-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.28 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
77
78
79
{
"name": "perishable-inventory",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "pm2 start pm2.yaml yarn --interpreter bash --name api -- start",
"prod": "tsc && node build/app.js",
"dev": "ts-node-dev --respawn --transpile-only src/app.ts",
"initdb": "ts-node tools/initdb",
"test": "jest --coverage --detectOpenHandles",
"test:watch": "jest --coverage --watchAll",
"build": "tsc",
"build:watch": "onchange 'src/**/*.ts' -- npm run build",
"view:coverage": "serve coverage/lcov-report",
"clean": "rm -rf coverage src/**/*.js src/**/*.map"
},
"dependencies": {
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"config": "^3.3.6",
"connect-redis": "^6.0.0",
"cors": "^2.8.5",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^6.0.12",
"nanoid": "^3.1.30",
"node-cron": "^3.0.0",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"pg-promise": "^10.11.1",
"pino": "^7.0.3",
"pino-pretty": "^7.1.0",
"pm2": "^5.1.2",
"redis": "^3.1.2",
"sequelize": "^6.8.0",
"threads": "^1.7.0",
"zod": "^3.11.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.1",
"@types/compression": "^1.7.2",
"@types/config": "^0.0.39",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/lodash": "^4.14.176",
"@types/nanoid": "^3.0.0",
"@types/node": "^16.11.4",
"@types/node-cron": "^3.0.0",
"@types/pg": "^8.6.1",
"@types/pino": "^6.3.12",
"@types/redis": "^2.8.32",
"@types/sequelize": "^4.28.10",
"@types/shelljs": "^0.8.9",
"@types/source-map-support": "^0.5.4",
"@types/supertest": "^2.0.11",
"fs-extra": "^10.0.0",
"jest": "^27.3.1",
"onchange": "^7.1.0",
"serve": "^12.0.1",
"shelljs": "^0.8.4",
"source-map-support": "^0.5.20",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"ts-node-dev": "^1.1.8",
"tslint": "^6.1.3",
"typescript": "^4.4.4"
}
}