-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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": "rux",
"version": "1.0.0",
"description": "",
"main": "index.js",
"proxy": "http://localhost:4000",
"scripts": {
"build": "npx tsc",
"test": "jest --watch",
"start": "node Dist/Server/app.js",
"dev": "nodemon --exec ts-node Simulator/app.ts",
"build-react": "cd Simulator/Client && npm run build",
"test-react": "cd Simulator/Client && npm test",
"start-react": "cd Simulator/Client && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sh-navid/FesenJoon.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sh-navid/FesenJoon/issues"
},
"homepage": "https://github.com/sh-navid/FesenJoon#readme",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@types/socket.io": "^3.0.2",
"cors": "^2.8.5",
"express": "^4.21.1",
"styled-components": "^6.1.13"
}
}