-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.39 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.39 KB
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": "owe",
"version": "1.0.0",
"description": "MVP project using graph database",
"main": "index.js",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"start": "node server.js",
"dev": "nodemon --ignore node_modules server.js && webpack -w",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xutopia/mvp_o.git"
},
"author": "Tony Xu",
"license": "ISC",
"bugs": {
"url": "https://github.com/xutopia/mvp_o/issues"
},
"homepage": "https://github.com/xutopia/mvp_o#readme",
"dependencies": {
"axios": "^0.15.3",
"babel-core": "^6.21.0",
"babel-preset-stage-1": "^6.16.0",
"body-parser": "^1.15.2",
"d3": "^4.4.1",
"dotenv": "^4.0.0",
"ejs": "^2.5.5",
"express": "^4.14.0",
"express-partials": "^0.3.0",
"neo4j-driver": "^1.1.1",
"nodemon": "^1.11.0",
"path": "^0.12.7",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.1",
"redux": "^3.6.0",
"redux-form": "^6.4.3",
"redux-promise": "^0.5.3",
"webpack": "^1.14.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
}
}