-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.66 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
{
"name": "computer-shop-backend",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"start": "node build/server.js",
"devts": "ts-node-dev --respawn --transpile-only src/server.ts",
"prod": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IamIGI/Computer-Shop-Server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/IamIGI/Computer-Shop-Server/issues"
},
"homepage": "https://github.com/IamIGI/Computer-Shop-Server#readme",
"dependencies": {
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-fileupload": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.6",
"node-schedule": "^2.1.0",
"nodemon": "^2.0.19",
"pdfkit": "^0.13.0",
"stripe": "^10.16.0",
"uuid": "^8.3.2",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.14",
"@types/express-fileupload": "^1.4.1",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.9",
"@types/node-schedule": "^2.1.0",
"@types/pdfkit": "^0.12.8",
"@types/stripe-node": "^4.7.1",
"@types/uuid": "^8.3.4",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
},
"keywords": [],
"description": ""
}