-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "express-starter",
"version": "1.0.0",
"main": "server.js",
"license": "MIT",
"description": "Quickly start Express with Pug, Passport and TypeORM. 🤸",
"now": {
"dotenv": "prod.env"
},
"standard": {
"ignore": [
"build/**/*"
]
},
"scripts": {
"dev": "nodemon src/server.js",
"lint": "./node_modules/.bin/standard",
"lint-fix": "./node_modules/.bin/standard --fix",
"db:mig:gen": "./node_modules/.bin/ts-node ./node_modules/.bin/typeorm migration:generate",
"db:mig": "./node_modules/.bin/ts-node ./node_modules/.bin/typeorm migration:run",
"db:m2": "npm run db:mig:gen -- -n mig && npm run db:mig"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-session": "^2.0.0-beta.3",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"joi": "^13.6.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.4.3",
"pug": "^3.0.1",
"ts-node": "^7.0.1",
"typeorm": "^0.2.25",
"typescript": "^3.0.3",
"youch-terminal": "^1.0.0"
},
"devDependencies": {
"nodemon": "^1.17.3",
"standard": "^12.0.1",
"youch": "^2.0.9"
}
}