-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.57 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
{
"name": "burndown-chart",
"version": "1.4.0",
"description": "An app to plot burndown charts",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/achntrl/BurndownChart"
},
"license": "MIT",
"dependencies": {
"@blueprintjs/core": "^1.20.0",
"@blueprintjs/datetime": "^1.17.0",
"custom-react-scripts": "^0.0.23",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-standard": "^3.0.1",
"express": "~4.11.x",
"kerberos": "~0.0.x",
"lodash": "^4.17.4",
"materialize-css": "^0.98.2",
"mobx": "^3.1.10",
"mobx-react": "^4.2.1",
"moment": "^2.18.1",
"parse": "^1.9.2",
"parse-server": "*",
"react": "^15.5.4",
"react-addons-css-transition-group": "^15.5.2",
"react-dom": "^15.5.4",
"react-flexbox-grid": "^1.1.3",
"react-materialize": "^0.18.4",
"recharts": "^0.22.4"
},
"devDependencies": {
"mobx-react-devtools": "^4.2.13"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"parse": "node --optimize_for_size --max_old_space_size=460 --gc_interval=100 index.js",
"lint": "eslint src tests; exit 0",
"fix": "eslint src tests --fix",
"test": "react-scripts test --env=jsdom",
"heroku-postbuild": "yarn build",
"eject": "react-scripts eject"
},
"engines": {
"node": ">=4.3"
}
}