generated from TexteaInc/fe-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 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
{
"name": "fe-template",
"packageManager": "[email protected]",
"workspaces": [
"packages/fe",
"packages/database"
],
"engines": {
"node": "^16"
},
"scripts": {
"tsc": "tsc -b",
"tsc:watch": "tsc -b --watch",
"run": "echo nothing for now",
"build": "echo nothing for now",
"lint": "eslint -c .eslintrc.js packages --ext .ts,.tsx,.js --cache --fix",
"test": "jest",
"preinstall": "npx only-allow yarn",
"postinstall": "husky install"
},
"lint-staged": {
"*.{!ts,tsx,js,jsx}": "prettier --write --ignore-unknown",
"*.{ts,tsx,js,jsx}": "eslint -c .eslintrc.js --cache --fix"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.1.1",
"@types/jest": "^27.5.0",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@types/web": "^0.0.64",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}