-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "litmotion",
"packageManager": "[email protected]",
"version": "1.0.0",
"author": "PLANUS Léo @leo29plns",
"scripts": {
"build": "tsc --project ./",
"start:dev": "nodemon src/server.ts",
"start:prod": "node dist/server.js",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"fluent-ffmpeg": "^2.1.3",
"lit": "^3.2.0",
"multer": "^1.4.5-lts.1",
"puppeteer": "^23.0.2",
"uuid": "^10.0.0",
"winston": "^3.14.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/fluent-ffmpeg": "^2",
"@types/jest": "^29.5.12",
"@types/multer": "^1",
"@types/node": "^22.2.0",
"@types/uuid": "^10",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}