-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.28 KB
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
{
"name": "online-store-api",
"version": "1.0.0",
"description": "",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@tsconfig/node16": "1.0",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^16.11.10",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"ts-jest": "^29.1.2",
"ts-node": "10.9.1",
"typescript": "4.5.2"
},
"dependencies": {
"@babel/preset-env": "^7.24.3",
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.1",
"http-status-codes": "^2.3.0",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"supertest": "^6.3.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-node-dev": "^2.0.0",
"typeorm": "0.3.20",
"uuidv4": "^6.2.13",
"zod": "^3.22.4"
},
"scripts": {
"start": "ts-node-dev --respawn --ignore-watch node_modules src/server.ts",
"typeorm": "typeorm-ts-node-commonjs",
"test": "jest"
}
}