forked from LekoArts/portfolio-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 2.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "portfolio-v2",
"description": "Home of lekoarts.de",
"version": "1.0.0",
"private": true,
"author": "LekoArts <[email protected]>",
"workspaces": [
"packages/*",
"www"
],
"scripts": {
"develop": "yarn workspace www develop",
"clean": "yarn workspace www clean",
"build": "yarn workspace www build",
"serve": "yarn workspace www serve",
"tsc": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ignore-path .gitignore --ignore-path .prettierignore --ext .ts,.tsx,.js",
"lint:fix": "yarn lint --fix",
"format": "prettier \"**/*.{md,mdx,json,yaml}\" --write",
"new-post": "./scripts/target/release/post",
"new-garden": "./scripts/target/release/garden",
"prepare": "husky install",
"test:watch": "vitest watch",
"test:ci": "vitest run",
"test:coverage": "vitest run --coverage",
"playwright": "playwright test",
"playwright:debug": "playwright test --debug",
"playwright:init": "playwright install chromium",
"e2e:develop": "yarn playwright:debug",
"e2e:build": "cross-env IS_BUILD=y yarn playwright",
"spellcheck": "cspell lint www/content/**/**/*.mdx --show-suggestions",
"rs:build": "cd scripts && cargo build --release"
},
"devDependencies": {
"@playwright/test": "^1.22.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.32",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"c8": "^7.12.0",
"cross-env": "^7.0.3",
"cspell": "^5.20.0",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"typescript": "^4.7.4",
"vitest": "^0.18.1"
},
"packageManager": "[email protected]"
}