-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.88 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
{
"name": "rtfa-web",
"version": "0.1.0",
"private": true,
"dependencies": {
"@blueprintjs/core": "^3.7.0",
"@blueprintjs/datetime": "^3.3.0",
"@blueprintjs/select": "^3.2.0",
"@types/googlemaps": "^3.30.16",
"axios": "^0.18.0",
"chart.js": "^2.7.3",
"lodash": "^4.17.11",
"node-sass": "^4.9.3",
"prop-types": "latest",
"pusher-js": "^4.3.1",
"react": "^16.5.2",
"react-chartjs-2": "^2.7.4",
"react-dom": "^16.5.2",
"react-google-maps": "^9.4.5",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts": "2.0.4",
"react-transition-group": "^2.5.2",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"simplebar-react": "^0.1.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --forceExit",
"eject": "react-scripts eject",
"lint-js": "eslint 'src/**/*.js'",
"lint-scss": "stylelint --fix 'src/**/*.scss'",
"lint": "run-p lint-js lint-scss",
"prettify": "prettier --write '{./src/**/*.scss,./src/**/*.json,./src/**/*.js,./src/**/*.yml,./src/**/*.yaml}'",
"autotest": "CI=true yarn test",
"validate": "npm-run-all lint prettify autotest build",
"start-with-mock-server": "run-p start-mock-server start",
"start-mock-server": "cd src/tools/ && yarn start && cd ../../"
},
"husky": {
"hooks": {
"pre-commit": "yarn validate"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@types/markerclustererplus": "^2.1.33",
"@types/react": "^16.7.1",
"ajv": "^6.5.4",
"husky": "^1.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.14.3",
"redux-logger": "^3.0.6",
"stylelint": "^9.6.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-order": "^1.0.0",
"stylelint-scss": "^3.3.1"
}
}