-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 894 Bytes
/
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
{
"dependencies": {
"@types/lodash": "^4.14.177",
"@types/uuid": "^8.3.3",
"body-parser": "^1.20.1",
"concurrently": "^6.4.0",
"css-loader": "^6.5.0",
"express": "^4.17.1",
"html-loader": "^3.0.0",
"jest": "^27.3.1",
"lodash": "^4.17.21",
"nodemon": "^2.0.20",
"ts-jest": "^27.0.7",
"uuid": "^8.3.2",
"ws": "^8.3.0"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"type": "module",
"devDependencies": {
"@types/jest": "^27.0.3",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.3",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.11.1"
},
"scripts": {
"test": "jest",
"build": "webpack build",
"dev": "concurrently \"nodemon index.js\" \"npx webpack serve\""
}
}