-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.6 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
{
"scripts": {
"build": "tsc",
"lint": "node_modules/.bin/eslint src --ext .ts",
"serve": "node dist/src/main.js",
"start": "npm run serve",
"test": "jest --config jest.config.ts --forceExit --verbose"
},
"dependencies": {
"@effect/schema": "^0.63.2",
"@jest/globals": "^29.7.0",
"@types/body-parser": "^1.19.2",
"@types/cls-hooked": "^4.3.9",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/crypto-js": "^4.1.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/jsonwebtoken": "^8.5.8",
"@types/nodemailer": "^6.4.16",
"@types/supertest": "^6.0.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"body-parser": "^1.19.1",
"cls-hooked": "^4.2.2",
"connect-session-sequelize": "^7.1.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-cookie": "^4.17.1",
"express-session": "^1.17.2",
"jest": "^29.7.0",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.3",
"nanoid": "^3.3.2",
"nodemailer": "^6.9.15",
"path": "^0.12.7",
"sequelize": "^6.37.1",
"sha3": "^2.1.4",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"uuid": "^8.3.2",
"winston": "^3.10.0"
},
"devDependencies": {
"eslint": "^8.13.0",
"eslint-plugin-vue": "^8.6.0",
"sass": "~1.32.0",
"sass-loader": "^10.0.0"
},
"engines": {
"node": "18.18.0"
}
}