-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 821 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 821 Bytes
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
{
"private": true,
"scripts": {
"postinstall": "husky install",
"build": "./scripts/build",
"clean": "./scripts/clean",
"gen": "./scripts/gen",
"lint": "./scripts/lint",
"nuke": "./scripts/nuke",
"test": "./scripts/test"
},
"lint-staged": {
"**/*.{ts,tsx,js,json,css,md}": [
"prettier --write"
]
},
"devDependencies": {
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/react": "^18.0.1",
"editorconfig-checker": "^4.0.2",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.4.0",
"plop": "^3.1.0",
"prettier": "^2.6.2",
"react": "^18.0.0",
"react-test-renderer": "^18.0.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}