-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.18 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
{
"name": "taks-list",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.23.9",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"cors": "^2.8.5",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.0"
},
"scripts": {
"dev:webpack": "webpack serve -w",
"dev:webpack:local": "webpack serve -w --host 127.0.0.1 --port 8080 --no-hot --no-live-reload",
"dev:webpack:localhot": "webpack serve -w --host 127.0.0.1 --port 8080",
"mock:json-server": "npx json-server -h 127.0.0.1 -p 8082 src/mock/api/db.json",
"mock:express-server": "node ./src/mock/api/mock-server.js",
"build:prod": "webpack -w --mode=production",
"server:nginx": "docker-compose up"
},
"dependencies": {
"express": "^4.18.2",
"json": "^11.0.0",
"json-server": "^1.0.0-alpha.23",
"nodemon": "^3.0.3",
"stackvis": "^0.5.0"
}
}