-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.85 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
60
61
62
63
64
65
66
67
68
69
{
"name": "blurred-board",
"version": "0.1.0",
"private": true,
"dependencies": {
"@sentry/browser": "^5.14.0",
"@types/axios": "^0.14.0",
"@types/classnames": "^2.2.9",
"@types/d3": "^5.7.2",
"@types/history": "^4.7.5",
"@types/nanoid": "^2.1.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.7",
"classnames": "^2.2.6",
"d3": "^5.15.0",
"http-proxy-middleware": "latest",
"immer": "^6.0.1",
"nanoid": "^2.1.11",
"node-sass": "^4.13.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.2.0",
"react-scripts": "3.4.0",
"react-toastify": "^5.5.0",
"redux": "^4.0.5",
"typescript": "~3.7.2"
},
"scripts": {
"start": "react-scripts start",
"server": "python server/server.py",
"build": "react-scripts build",
"lint:ts:fix": "tslint --fix './src/**/*.{ts,tsx}' -t verbose",
"format": "prettier --trailing-comma es5 --single-quote --no-semi --write \"src/**/*.{ts,tsx,scss}\"",
"check": "prettier --check \"src/**/*.{ts,tsx,scss}\""
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"cz-conventional-changelog": "3.1.0",
"husky": "^4.2.3",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"stylelint": "^13.2.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.14.2",
"tslint": "^6.0.0",
"tslint-config-airbnb": "^5.11.2",
"tslint-plugin-prettier": "^2.1.0",
"tslint-react-hooks": "^2.2.1",
"tslint-sonarts": "^1.9.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}