-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.53 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
{
"name": "v8-bears-team-01",
"version": "1.0.0",
"main": "index.js",
"engines": {
"node": "10.13.0",
"npm": "6.5.0",
"yarn": "1.12.3"
},
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"client": "yarn --cwd client run start",
"dev": "concurrently --k \"yarn run server\" \"yarn run client\"",
"client-install": "cd client && yarn",
"server-install": "yarn",
"install-all": "concurrently --k \"yarn run client-install\" \"yarn run server-install\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": "git@github.com:Dan-Y-Ko/v8-bears-team-01.git",
"author": "Daniel Ko",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.440.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"client": "file:client",
"concurrently": "^4.1.0",
"cookie-session": "^1.3.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"firebase": "^3.9.0",
"install-peers": "^1.0.3",
"jsonwebtoken": "^8.5.1",
"mime-types": "^2.1.23",
"mongoose": "^5.4.19",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "2",
"react-select-us-states": "^0.1.2",
"typescript": "^3.4.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"enzyme": "^3.9.0",
"nodemon": "^1.18.10"
}
}