-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.46 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
70
71
72
73
74
75
76
77
{
"version": "0.1.0",
"description": "Admin frontend for ohmage v2",
"main": "",
"scripts": {
"clean": "rimraf dist/*",
"copy": "copyfiles -f ./src/favicon.ico ./dist",
"dist": "npm run copy && webpack --env=dist",
"dist_navbar": "npm run copy && BASE_HREF=/navbar/neo-admin/ webpack --env=dist",
"lint": "eslint ./src",
"posttest": "npm run lint",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"serve": "node server.js --env=dev",
"serve:dist": "node server.js --env=dist",
"dev_navbar": "DEV_MODE=navbar node server.js --env=dev",
"start": "node server.js --env=dev"
},
"repository": {
"type": "git",
"url": "https://github.com/mobilizingcs/neo-admin.git"
},
"keywords": [],
"author": "Kapeel Sable <[email protected]>",
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.5.0",
"bower-webpack-plugin": "^0.1.9",
"copyfiles": "^1.0.0",
"css-loader": "^0.23.0",
"eslint": "^3.0.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^6.0.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.28.0",
"minimist": "^1.2.0",
"open": "0.0.5",
"react-addons-perf": "^15.4.2",
"react-hot-loader": "^1.2.9",
"rimraf": "^2.4.3",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.0",
"webpack-dev-server": "^1.13.0"
},
"dependencies": {
"core-js": "^2.0.0",
"dexie": "^1.5.1",
"file-saver": "^1.3.3",
"isomorphic-fetch": "^2.2.1",
"material-ui": "^0.17.1",
"material-ui-datatables": "^0.16.9",
"normalize.css": "^4.0.0",
"ohmage-es6": "^1.0.1",
"papaparse": "^4.2.0",
"prop-types": "^15.5.9",
"react": "^15.0.0",
"react-ace": "^4.2.0",
"react-dom": "^15.0.0",
"react-flexbox-grid": "^1.0.2",
"react-material-ui-form-validator": "^0.3.1",
"react-redux": "^5.0.2",
"react-router-dom": "^4.1.0",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-action-buffer": "^1.0.1",
"redux-batched-subscribe": "^0.1.6",
"redux-logger": "^2.8.1",
"redux-persist": "^4.6.0",
"redux-thunk": "^2.2.0"
}
}