-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
76 lines (76 loc) · 2.34 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "express-backend-ts",
"version": "1.0.0",
"description": "Express backend rest api starter built with typescript",
"author": "BTechno",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://gitlab.com/btechno/express-backend-starter.git"
},
"scripts": {
"start": "npm run serve",
"build": "concurrently \"npm run tslint\" \"npm run build-ts\"",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "jest --forceExit --coverage --verbose",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json --fix",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"db:migrate": "sequelize db:migrate",
"watch-debug": "concurrently -k -p \"[{name}]\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"docs:generate": "apidoc -o public/ -i src/routes/",
"pm2": "pm2",
"sequelize": "sequelize"
},
"husky": {
"hooks": {
"pre-commit": "npm run build"
}
},
"dependencies": {
"axios": "^0.19.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"compression": "^1.7.4",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"i18n": "^0.8.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"pg": "^7.9.0",
"pg-hstore": "^2.3.2",
"sequelize": "^5.10.1",
"sqlite3": "^4.0.6",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt-nodejs": "0.0.30",
"@types/compression": "0.0.36",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/i18n": "^0.8.5",
"@types/jsonwebtoken": "^8.3.2",
"@types/node": "^11.13.0",
"@types/sequelize": "^4.27.46",
"@types/validator": "^10.11.0",
"apidoc": "^0.17.7",
"concurrently": "^4.1.0",
"husky": "^1.3.1",
"jest": "^24.7.1",
"nodemon": "^1.18.10",
"pm2": "^3.4.1",
"sequelize-cli": "^5.5.0",
"supertest": "^4.0.2",
"ts-jest": "^24.0.1",
"ts-node": "^8.0.3",
"tslint": "^5.15.0",
"typescript": "^3.4.3"
}
}