forked from bruceisyoung/gigsterPractice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.58 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.58 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
57
58
59
60
61
62
63
64
65
66
{
"name": "gigtsterpractice",
"version": "1.0.0",
"description": "practice for gigster tech skill interview",
"main": "server.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register test/*.js",
"dev": "webpack",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bruceisyoung/gigsterPractice.git"
},
"keywords": [
"react",
"redux",
"node",
"express",
"mongodb"
],
"author": "Sheng Yang",
"license": "ISC",
"bugs": {
"url": "https://github.com/bruceisyoung/gigsterPractice/issues"
},
"homepage": "https://github.com/bruceisyoung/gigsterPractice#readme",
"babel": {
"presets": [
"es2015",
"react"
]
},
"dependencies": {
"axios": "^0.15.3",
"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-1": "^6.16.0",
"bcrypt": "^1.0.2",
"bluebird": "^3.4.6",
"body-parser": "^1.16.0",
"express": "^4.14.0",
"jquery": "^3.1.1",
"moment": "^2.17.1",
"mongodb": "^2.2.24",
"mongoose": "^4.8.2",
"react": "^15.4.2",
"react-bootstrap": "^0.30.7",
"react-bootstrap-datetimerangepicker": "^2.0.3",
"react-datetime": "^2.8.6",
"react-dom": "^15.4.1",
"react-modal": "^1.6.5",
"react-redux": "^5.0.2",
"react-table": "^5.3.2",
"redux": "^3.6.0",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.1.2",
"supertest": "^3.0.0"
}
}