-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "to-do-zen-app-back",
"version": "0.2.0",
"description": "to-do-zen-app-backend",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"start:dev": "tsnd index.ts",
"test": "jest"
},
"author": "Aleksandra Wilk",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/jsonwebtoken": "^9.0.6",
"@types/method-override": "^0.0.35",
"@types/validator": "^13.11.10",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"dropbox": "^10.34.0",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^7.3.1",
"express-session": "^1.18.0",
"jsonwebtoken": "^9.0.2",
"method-override": "^3.0.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.9.3",
"punycode": "^2.3.1",
"sharp": "^0.33.4",
"uuid": "^9.0.1",
"validator": "^13.12.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.30",
"@types/uuid": "^9.0.8",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.3"
}
}