-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.6 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
{
"name": "sembly",
"version": "1.0.0",
"description": "Drop pins to coordinate events",
"main": "server/server.js",
"scripts": {
"test": "mocha ./specs --bail",
"start": "nodemon server/server.js production",
"populate": "node testData.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/somnolentsoylent/somnolentsoylent.git"
},
"author": "Spencer Lopez, Carlos Flores, Omar Mohamed",
"license": "ISC",
"bugs": {
"url": "https://github.com/somnolentsoylent/somnolentsoylent/issues"
},
"homepage": "https://github.com/somnolentsoylent/somnolentsoylent#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"material-ui": "^0.16.1",
"mongodb": "^2.2.10",
"mongoose": "^4.6.4",
"morgan": "^1.7.0",
"nodemon": "^1.11.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-tap-event-plugin": "^1.0.0",
"request": "^2.78.0",
"request-promise": "^4.1.1"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-react": "^6.16.0",
"chai": "^3.5.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.5.0",
"mocha": "^3.1.2",
"sinon": "^1.17.6",
"supertest": "^2.0.1",
"webpack": "^1.13.2"
},
"eslintConfig": {
"extends": "airbnb",
"env": {
"mocha": true
},
"plugins": [
"react",
"jsx-a11y",
"import"
]
}
}