forked from waste-not/waste-not
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.04 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
{
"name": "waste-not",
"version": "1.0.0",
"description": "An app developed for AngelHack 2016",
"main": "index.js",
"scripts": {
"lint": "node_modules/eslint/bin/eslint.js --ext=.js client/ lib/ models/ routes/ test/backend/ *.js",
"postinstall": "gulp build",
"pretest": "npm run lint",
"start": "node server",
"test": "node_modules/mocha/bin/mocha test/backend/lib test/backend/routes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/waste-not/waste-not.git"
},
"author": [
{
"name": "Natalie Chow",
"email": "[email protected]"
},
{
"name": "Sabrina Tee",
"email": "[email protected]"
},
{
"name": "Logan Tegman",
"email": "[email protected]"
},
{
"name": "Jose Tello",
"email": "[email protected]"
},
{
"name": "Jesse Thach",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/waste-not/waste-not/issues"
},
"homepage": "https://github.com/waste-not/waste-not#readme",
"dependencies": {
"bcrypt": "^0.8.5",
"body-parser": "^1.15.0",
"csv-write-stream": "^1.0.0",
"express": "^4.13.4",
"jsonwebtoken": "^5.7.0",
"mongoose": "^4.4.12",
"superagent": "^1.8.3"
},
"devDependencies": {
"axios": "^0.9.1",
"babel": "^6.5.2",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-http": "^2.0.1",
"eslint": "^2.8.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^4.3.0",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"gulp-mocha": "^2.2.0",
"gulp-sass": "^2.2.0",
"mocha": "^2.4.5",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-redux": "^4.4.5",
"react-router": "^2.2.4",
"redux": "^3.4.0",
"redux-form": "^5.0.1",
"redux-thunk": "^2.0.1",
"sinon": "^1.17.4",
"webpack": "^1.13.0",
"webpack-stream": "^3.1.0"
}
}