-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
45
46
{
"main": "dist/server/index.js",
"engines": {
"node": "18.x"
},
"nodemonConfig": {
"ext": "ts",
"exec": "npm run build && npm start"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@swc/core": "^1.2.174",
"@swc/jest": "^0.2.20",
"@types/jest": "^29.0.1",
"add": "^2.0.6",
"babel-jest": "^29.0.1",
"husky": "^8.0.0",
"jest": "^29.6.4",
"ts-jest": "^27.1.4",
"typescript": "^4.8.4",
"yarn": "^1.22.18"
},
"scripts": {
"start": "node .",
"launch": "echo todo: doesn't work & cd ./src/server & ls & ls *.json & ts-node . & open http://localhost:3000",
"build": "tsc",
"test": "jest --watch --verbose",
"test-all": "jest --verbose",
"debug": "node --debug-brk --inspect ./node_modules/jest/bin/jest -i",
"dev": "nodemon",
"prepare": "husky install"
},
"dependencies": {
"@types/express": "^4.17.13",
"@types/ws": "^8.5.3",
"async-lock": "^1.3.1",
"create-react-app": "^5.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"jest-websocket-mock": "^2.3.0",
"jquery": "^3.6.0",
"nodemon": "^2.0.19",
"websocket": "^1.0.34"
}
}