-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.15 KB
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
{
"name": "lees-friends-server",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "NODE_ENV=development nodemon ./bin/www",
"clean:dist": "npm run rimraf -- dist",
"grunt:dev": "grunt dev",
"grunt:staging": "grunt staging",
"grunt:prod": "grunt prod",
"client:staging": "cd client/ && npm run build:staging && cd ..",
"client:prod": "cd client/ && npm run build:prod & cd ..",
"build:staging": "npm run client:staging && npm run grunt:staging",
"build:prod": "npm run client:prod && npm run grunt:prod",
"deploy:staging": "npm run clean:dist && npm run build:staging && gcloud app deploy --project=lees-friends-staging --verbosity=info --quiet --stop-previous-version",
"deploy:prod": "npm run clean:dist && npm run build:prod && gcloud app deploy --project=lees-friends --verbosity=info",
"deploy:staging:noclient": "npm run grunt:staging && gcloud app deploy --project=lees-friends-staging --verbosity=info --quiet --stop-previous-version",
"deploy:prod:noclient": "npm run grunt:prod && gcloud app deploy --project=lees-friends --verbosity=info",
"rimraf": "rimraf"
},
"dependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"@types/jsonwebtoken": "^7.1.33",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"debug": "~2.2.0",
"express": "~4.14.0",
"helmet": "^3.1.0",
"jade": "~1.11.0",
"jsonwebtoken": "^7.2.1",
"lodash": "^4.17.2",
"mongodb": "^2.2.16",
"morgan": "^1.7.0",
"q": "^1.4.1",
"rxjs": "^5.0.1",
"serve-favicon": "^2.3.2"
},
"devDependencies": {
"@types/body-parser": "0.0.33",
"@types/cookie-parser": "^1.3.30",
"@types/cors": "0.0.33",
"@types/helmet": "0.0.33",
"@types/mongodb": "^2.1.36",
"@types/morgan": "^1.7.32",
"@types/serve-favicon": "^2.2.28",
"grunt": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-set-env": "^0.1.3",
"grunt-ts": "^6.0.0-beta.3",
"method-override": "^2.3.7",
"nodemon": "^1.11.0",
"rimraf": "^2.5.4",
"typescript": "^2.0.10"
}
}