-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "lettuceeat",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"server": "node server.js",
"client": "cd client && npm run start",
"start": "concurrently \"nodemon server.js\" \"npm run client\"",
"build": "cd client && npm run build",
"deploy": "yarn build && git add . && git commit -m \"Building for production\" && git push heroku master",
"test": "mocha",
"heroku-prebuild": "cd client && yarn install",
"heroku-postbuild": "node scripts/build.js"
},
"engines": {
"yarn": "1.5.1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.5.0",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"axios": "^0.18.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"electron": "^1.8.4",
"express": "^4.15.4",
"express-session": "^1.15.6",
"google-maps-react": "^2.0.0",
"jest": "^22.4.3",
"jsonwebtoken": "^8.2.1",
"mocha": "^5.1.0",
"mysql": "^2.15.0",
"mysql2": "^1.5.3",
"nightmare": "^3.0.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"react-text-mask": "^5.3.0",
"sequelize": "^4.37.5",
"supertest": "^3.0.0",
"uuid": "^3.2.1"
}
}