-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 KB
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
{
"name": "filmakerai",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "dotenv -e server/.env.test -- jest",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd server && npx ts-node index.ts",
"client": "cd client && npm run dev",
"build": "npm run build:server && npm run build:client",
"build:server": "cd server && tsc",
"build:client": "cd client && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@babel/preset-typescript": "^7.27.1",
"@jest/globals": "^29.7.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/cors": "^2.8.18",
"@types/jest": "^29.5.14",
"@types/supertest": "^6.0.3",
"concurrently": "^9.1.2",
"dotenv-cli": "^8.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2"
},
"dependencies": {
"axios": "^1.9.0",
"jest-environment-jsdom": "^29.7.0",
"jspdf": "^3.0.1",
"jspdf-autotable": "^5.0.2",
"supertest": "^7.1.0",
"text-decoding": "^1.0.0",
"text-encoding": "^0.7.0",
"util": "^0.12.5"
}
}