-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.62 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
{
"name": "root",
"version": "1.0.0beta1",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"postinstall": "husky install",
"start": "zx scripts/start.js",
"lint": "eslint --cache --report-unused-disable-directives app/",
"test": "jest",
"build": "pnpm -r run build",
"app:start": "pnpm --filter 'app' run start",
"app:build": "pnpm --filter 'app' run build",
"app:preview": "pnpm --filter 'app' run preview",
"app:deploy": "pnpm --filter 'app' run deploy",
"prettier:base": "pnpm exec prettier --parser typescript",
"prettier:check": "pnpm run prettier:base --list-different app/**/*.{ts,tsx}",
"prettier:write": "pnpm run prettier:base --write app/**/*.{ts,tsx}",
"typescript:build": "pnpm exec tsc --build"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.10.0",
"@types/eslint": "^8.21.2",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-next": "^13.3.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"typescript": "^5.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"sideEffects": false,
"jest": {
"cacheDirectory": ".cache/jest",
"testPathIgnorePatterns": [
"<rootDir>/.cache/",
"<rootDir>/.github/",
"<rootDir>/.husky/",
"<rootDir>/.yarn/",
"<rootDir>/dist/",
"<rootDir>/scripts/"
]
},
"envars": {
"cwd": "./env"
}
}