-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "privatewebsite-backend",
"version": "1.0.0",
"description": "A private website",
"type": "module",
"scripts": {
"test": "rimraf dist && npm run build && node --enable-source-maps dist/test.js",
"build": "rimraf dist && tsc",
"start": "rimraf dist && tsc && node --enable-source-maps dist/index.js",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/SALTWOOD/PrivateWebsite-Backend.git"
},
"author": "SALTWOOD",
"license": "MIT",
"bugs": {
"url": "https://github.com/SALTWOOD/PrivateWebsite-Backend/issues"
},
"homepage": "https://github.com/SALTWOOD/PrivateWebsite-Backend#readme",
"dependencies": {
"@tsconfig/node22": "^22.0.0",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-async-errors": "^3.1.1",
"got": "^14.4.4",
"json5": "^2.2.3",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.11.4",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"uuid": "^11.0.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12"
}
}