-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
71 lines (71 loc) · 2.02 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
{
"name": "greenfield",
"version": "1.0.0",
"description": "hobby-sharing web app",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"test": "find ./test -name '*_spec.js' | xargs mocha -R spec",
"test-db": "mocha ./test/db.spec.js",
"test-auth": "mocha ./test/auth.spec.js",
"react-dev": "webpack -d --watch",
"react-build": "webpack -d",
"server-dev": "nodemon server/server.js",
"build": "npm install && webpack -d && npm run server-dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/psychonauts/Greenfield.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/psychonauts/Greenfield/issues"
},
"homepage": "https://github.com/psychonauts/Greenfield#readme",
"dependencies": {
"axios": "^0.18.0",
"bcrypt": "^3.0.4",
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"mapbox-gl": "^0.53.0",
"material-ui": "^0.20.2",
"moment": "^2.24.0",
"nodemailer": "^5.1.1",
"nodemon": "^1.18.10",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.8.0",
"pg-hstore": "^2.3.2",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-mapbox-gl": "^4.2.0",
"react-materialize": "^2.6.0",
"sequelize": "^4.42.0",
"underscore": "^1.9.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.2.0",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"mocha": "^5.2.0",
"proxyquire": "^2.1.0",
"sequelize-test-helpers": "^1.0.9",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"supertest": "^3.4.2",
"supertest-session": "^3.3.0",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
}
}