-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "spaghetti-share-backend",
"version": "1.0.0",
"description": "Backend server for spaghetti-share, built with Express",
"main": "src/index.ts",
"scripts": {
"dev": "ts-node-dev --respawn ./src/index.ts",
"test": "jest",
"prod": "tsc && node ./dist/index.js",
"build": "tsc"
},
"author": "1withspaghetti",
"license": "MIT",
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/multer": "^1.4.7",
"@types/node": "^18.15.0",
"@types/sharp": "^0.31.1",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.13",
"jest": "^29.5.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.3.4",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.15.0",
"ffmpeg-static": "^5.1.0",
"fuzzysort": "^2.0.4",
"multer": "^1.4.5-lts.1",
"sharp": "^0.31.3",
"sqlite3": "^5.1.6",
"validator": "^13.9.0"
}
}