-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.75 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
{
"name": "studentplanner-web",
"version": "1.0.0",
"private": true,
"dependencies": {
"antd": "3.12.1",
"classnames": "2.2.6",
"core-js": "2.6.1",
"firebase": "5.7.1",
"jest": "23.6.0",
"moment": "2.23.0",
"react": "16.7.0",
"react-color": "2.17.0",
"react-dom": "16.7.0",
"react-helmet": "5.2.0",
"react-router": "4.3.1",
"react-router-dom": "4.3.1",
"whatwg-fetch": "3.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "tslint --project tsconfig.json",
"deploy:prod": "run-s lint build && firebase use prod && firebase deploy",
"deploy:dev": "cross-env REACT_APP_FIREBASE_DEPLOY=dev run-s lint build && firebase use dev && firebase deploy"
},
"browserslist": [
">0.2%",
"not dead",
"not ie < 11",
"not op_mini all"
],
"devDependencies": {
"@types/classnames": "2.2.7",
"@types/jest": "23.3.10",
"@types/node": "10.12.18",
"@types/react": "16.7.18",
"@types/react-color": "2.14.0",
"@types/react-dom": "16.0.11",
"@types/react-helmet": "5.0.7",
"@types/react-router": "4.4.3",
"@types/react-router-dom": "4.3.1",
"cross-env": "5.2.0",
"node-sass": "4.11.0",
"npm-run-all": "4.1.5",
"react-scripts": "2.1.1",
"tslint": "5.12.0",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"tslint-react": "3.6.0",
"typescript": "3.2.2",
"typescript-plugin-css-modules": "1.0.5",
"typescript-tslint-plugin": "0.3.1"
}
}