-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 993 Bytes
/
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
{
"name": "use-controlled-state",
"version": "0.0.3",
"main": "dist/index.js",
"umd:main": "dist/use-controlled-state.umd.production.js",
"module": "dist/use-controlled-state.es.production.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@testing-library/react": "^8.0.1",
"@types/jest": "^24.0.14",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"husky": "^2.4.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"tsdx": "^0.6.1",
"tslib": "^1.10.0",
"typescript": "^3.5.1"
}
}