-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 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
{
"name": "crowded",
"version": "1.0.0",
"description": "Find an open seat in the coffee shop near you",
"main": "index.js",
"scripts": {
"start": "npm run build && node ./src/server/server.js",
"dev": "nodemon ./src/server/server.js",
"devBuild": "webpack -d --watch",
"build": "webpack -d",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js 'test/**/*.js'",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crowdedProject/Crowded.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/crowdedProject/Crowded/issues"
},
"homepage": "https://github.com/crowdedProject/Crowded#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"jquery": "^3.0.0",
"jsdom": "^9.2.1",
"mocha": "^2.5.3",
"react-addons-test-utils": "^15.1.0",
"supertest": "^1.2.0",
"supertest-as-promised": "^3.1.0"
},
"dependencies": {
"axios": "^0.12.0",
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"body-parser": "^1.15.1",
"css-loader": "^0.23.1",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.21.0",
"image-webpack-loader": "^1.8.0",
"jwt-decode": "^2.0.1",
"lodash": "^4.13.1",
"material-design-lite": "^1.1.3",
"material-ui": "^0.15.1",
"path": "^0.12.7",
"pg": "^5.1.0",
"pg-hstore": "^2.3.2",
"react": "15.1.0",
"react-dom": "^15.1.0",
"react-event-listener": "^0.2.1",
"react-google-maps": "^4.7.1",
"react-redux": "^4.0.0",
"react-router": "^2.4.1",
"react-sanfona": "0.0.13",
"react-simple-dropdown": "^1.1.4",
"react-sparklines": "^1.5.2",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.0.0",
"redux-form": "^4.1.3",
"redux-logger": "^2.6.1",
"redux-promise": "^0.5.3",
"sequelize": "^3.23.3",
"style-loader": "^0.13.1",
"supertest": "^1.2.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.1"
}
}