-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.16 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
78
79
80
81
82
83
{
"name": "project-initializer",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/burly-bulls/project-initializer.git",
"author": "Burly Bulls",
"license": "MIT",
"scripts": {
"start": "node server/server.js",
"start-nodemon": "nodemon server/server.js",
"start-webpack": "webpack --config webpack.config.js --progress --colors --watch",
"test": "mocha",
"jest": "jest"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
},
"dependencies": {
"axios": "^0.15.3",
"babel": "^6.5.2",
"babel-core": "^6.21.0",
"babel-jest": "^18.0.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",
"bluebird": "^3.4.7",
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"child_process": "^1.0.2",
"cli": "^1.0.1",
"cors": "^2.8.1",
"corser": "^2.0.1",
"cron": "^1.2.1",
"crypto": "^0.0.3",
"directory-tree": "^1.2.0",
"draft-js": "^0.9.1",
"draft-js-prism": "^1.0.3",
"enzyme": "^2.7.0",
"eslint": "^3.12.2",
"express": "^4.14.0",
"express-session": "^1.14.2",
"ger-neo4j": "^1.0.3",
"grunt": "^1.0.1",
"jest": "^18.1.0",
"lodash": "^4.17.2",
"mocha": "^3.2.0",
"mongo": "^0.1.0",
"mongoose": "^4.7.6",
"ncp": "^2.0.0",
"neo4j-driver": "^1.0.5",
"passport": "^0.3.2",
"passport-github2": "^0.1.10",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-bootstrap": "^0.30.7",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"react-router": "^3.0.0",
"react-router-bootstrap": "^0.23.1",
"react-test-renderer": "^15.4.1",
"redux": "^3.6.0",
"simple-git": "^1.65.0",
"sinon": "^1.17.7",
"socket-io": "^0.0.0",
"webpack": "^1.14.0"
},
"jest": {
"unmockedModulePathPatterns": [
"./node_modules/react",
"./node_modules/react-dom",
"./node_modules/react-addons-test-utils"
],
"scriptPreprocessor": "./node_modules/babel-jest"
}
}