-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.43 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
{
"name": "wd-tree-example",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/classnames": "^2.2.10",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"node-sass": "^4.13.1",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"typescript": "~3.7.2",
"wd-tree": "file:src/wd-tree"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "tslint './src/wd-tree/*.{ts,tsx}' -t verbose --project tsconfig.json"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"husky": "^3.1.0",
"pretty-quick": "^2.0.1",
"source-map-explorer": "^2.0.1",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.9.1",
"tslint": "^5.18.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react-hooks": "^2.2.1",
"tslint-sonarts": "^1.9.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}