-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 992 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 992 Bytes
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
{
"name": "mockup",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server-dependencies": "npm install",
"client-dependencies": "npm install --prefix client",
"install-all-deps": "concurrently \"npm run server-dependencies\" \"npm run client-dependencies\"",
"server": "node server/index.js",
"client": "npm start --prefix expressThree",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"test": "mocha --recursive 'test/**/*.test.js'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.7",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"dat.gui": "^0.7.9",
"express": "^4.19.2",
"express-ejs-layouts": "^2.5.1",
"three": "^0.165.0",
"ts-node": "^10.9.2",
"vite": "^5.4.8"
},
"devDependencies": {
"chai": "^5.1.1",
"chai-http": "^5.0.0",
"jsonwebtoken": "^9.0.2",
"mocha": "^10.7.3",
"supertest": "^7.0.0"
}
}