-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.07 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
{
"name": "scheduler-backend",
"version": "0.1.0",
"private": true,
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"build-prod": "npm run clean && tsc --sourceMap false",
"dev": "npm run build && node --inspect dist/index.js",
"dev:watch": "nodemon --watch ./src -e ts,json --exec \"ts-node src/index.ts\"",
"prod": "cross-env NODE_ENV=production npm run build-prod && node dist/index.js",
"start": "npm run dev",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"test:": "cross-env NODE_ENV=test mocha --exit --timeout 5000",
"test:watch": "npm run test -- --watch",
"apidoc": "apidoc -i src/ -o apidoc/",
"db:create": "dotenv sequelize db:create",
"db:migrate": "dotenv sequelize db:migrate",
"db:unmigrate": "dotenv sequelize db:migrate:undo",
"db:seed": "dotenv sequelize db:seed:all",
"db:unseed": "dotenv sequelize db:seed:undo",
"db:init": "npm run db:create && npm run db:migrate && npm run db:seed"
},
"dependencies": {
"axios": "^0.21.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"dotenv-cli": "^4.0.0",
"express": "~4.16.1",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"pg": "^8.7.1",
"pino": "^6.13.0",
"pino-pretty": "^5.1.2",
"reflect-metadata": "^0.1.13",
"sequelize": "6.6.1",
"sequelize-cli": "^6.2.0",
"sequelize-typescript": "^2.1.0"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.4",
"@types/mocha": "^9.0.0",
"@types/morgan": "^1.9.3",
"@types/node": "^16.4.13",
"@types/pino": "^6.3.11",
"@types/validator": "^13.6.3",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"apidoc": "^0.29.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"mocha": "^9.0.3",
"nodemon": "^2.0.12",
"nyc": "^15.1.0",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
}
}