-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.51 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
{
"name": "hrsf82-mvp-rate-my-beer",
"version": "1.0.0",
"description": "Rate My Beer - MVP Project",
"main": "index.js",
"engines": {
"node": "6.11.1"
},
"scripts": {
"react-dev": "webpack -d --watch",
"server-dev": "nodemon server/index.js",
"lint": "eslint ./",
"start": "node server/index.js",
"start-babel": "babel-node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kennyxcao/hrsf82-mvp.git"
},
"author": "Kenny Cao",
"license": "ISC",
"bugs": {
"url": "https://github.com/kennyxcao/hrsf82-mvp/issues"
},
"homepage": "https://github.com/kennyxcao/hrsf82-mvp#readme",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.19.1"
},
"dependencies": {
"beeradvocate-api": "0.0.1",
"bluebird": "^3.5.0",
"body-parser": "^1.18.2",
"bootstrap": "^3.3.7",
"bootstrap-slider": "^9.9.0",
"express": "^4.15.0",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"mongoose": "^4.9.6",
"react": "^15.4.2",
"react-bootstrap-slider": "^2.0.1",
"react-dom": "^15.4.2",
"request": "^2.81.0"
}
}