-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·31 lines (31 loc) · 819 Bytes
/
package.json
File metadata and controls
executable file
·31 lines (31 loc) · 819 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
{
"name": "tabletop-task",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "webpack serve --mode development --env development",
"dev:server": "nodemon ./api/dev-server.mjs",
"build": "webpack --mode production --env production"
},
"keywords": [],
"author": "tabletop",
"dependencies": {
"@babel/core": "^7.14.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"cors": "^2.8.5",
"css-loader": "^5.2.6",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^5.2.2"
},
"devDependencies": {
"nodemon": "^3.1.0"
}
}