generated from Draym/node-api-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.96 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
{
"name": "dlab-sso",
"version": "1.3.0",
"main": "dist/app.js",
"private": true,
"license": "MIT",
"scripts": {
"db:migrate": "ts-node umzug.ts",
"start": "cross-env npm run db:migrate && cross-env node dist/server.js",
"clean": "rimraf dist",
"dev": "cross-env NODE_ENV=development npm run db:migrate && cross-env NODE_ENV=development nodemon",
"quick-dev": "cross-env NODE_ENV=development nodemon",
"build": "tsc",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.15.8",
"@d-lab/api-kit": "^0.5.5",
"@d-lab/common-kit": "^0.7.0",
"@sendgrid/mail": "^7.7.0",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"compression": "^1.7.4",
"consola": "^2.15.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"ethers": "^6.0.3",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"express-prom-bundle": "^6.6.0",
"express-validator": "^6.14.3",
"form-data": "^4.0.0",
"helmet": "^4.6.0",
"jsonwebtoken": "^9.0.0",
"mailgun.js": "^8.0.6",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"nanoid": "^3.3.4",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.29.0",
"ts-node": "^10.4.0",
"tsc-hooks": "^1.1.1",
"tsconfig-paths": "^3.12.0",
"tslib": "^2.4.0",
"tunnel": "^0.0.6",
"typescript": "^4.4.4",
"umzug": "^3.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/config": "^0.0.41",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/jest": "^28.1.6",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.6.6",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"ts-jest": "^28.0.7",
"tslint": "^6.1.3"
}
}