-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.23 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
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"prestart": "npm run build",
"start": "node ./dist/api/index.js"
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"node_modules/variables/.+\\.(j|t)sx?$": "ts-jest"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/express-session": "^1.17.10",
"@types/jest": "^29.5.3",
"@types/node": "^18.14.1",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.2",
"babel-jest": "^29.6.1",
"jest": "^29.7.0",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1"
},
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.5",
"@vercel/node": "^3.0.11",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.3",
"joi": "^17.8.3",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.2.0",
"rimraf": "^4.1.2",
"typescript": "^4.9.5",
"uuid": "^9.0.0",
"vercel": "37.12.1",
"zod": "^3.21.4"
}
}