-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.68 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.68 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
60
{
"name": "super-node-starter",
"version": "3.0.0",
"description": "a simple starter project for NodeJS Express apps",
"main": "build/server/web.js",
"scripts": {
"build": "tsc",
"prestart": "yarn run build",
"start": "heroku local",
"predevelop": "yarn run build",
"develop": "heroku local -f Procfile_DV tsc web",
"lint": "tslint src/",
"scan": "nsp check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephn-r/super-node-starter.git"
},
"author": "Stephen Rodriguez <steprodriguez10@gmail.com>",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/stephn-r/super-node-starter/issues"
},
"homepage": "https://github.com/stephn-r/super-node-starter#readme",
"private": true,
"dependencies": {
"@types/bcrypt-nodejs": "^0.0.30",
"@types/body-parser": "^0.0.33",
"@types/compression": "^0.0.33",
"@types/cors": "^2.8.0",
"@types/dotenv": "^2.0.20",
"@types/express": "^4.0.35",
"@types/helmet": "^0.0.33",
"@types/lodash": "^4.14.52",
"@types/node-uuid": "^0.0.28",
"@types/ora": "^0.3.31",
"@types/sequelize": "^4.0.40",
"@types/winston": "^2.2.0",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.16.1",
"chai": "^3.5.0",
"cli-spinners": "^1.0.0",
"compression": "^1.6.2",
"cors": "^2.8.1",
"cross-env": "^3.1.4",
"dotenv": "^4.0.0",
"express": "^4.14.1",
"helmet": "^3.4.0",
"hpp": "^0.2.1",
"lodash": "^4.17.4",
"mocha": "^3.2.0",
"node-uuid": "^1.4.7",
"nsp": "^2.6.2",
"pg": "^6.1.2",
"sequelize": "^3.30.2",
"tslint": "^4.4.2",
"typescript": "^2.1.6",
"winston": "^2.3.1"
}
}