forked from belaidk/test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 777 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 777 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
{
"name": "template-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf dist/",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean && webpack --mode production --config webpack.config.js",
"start-node": "node dist/bundle.js",
"start": "webpack serve --mode development --config webpack.config.js",
"all": "npm run build && npm run start"
},
"author": "",
"license": "ISC",
"devDependencies": {
"css-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"rimraf": "^3.0.2",
"style-loader": "^3.2.1",
"ts-loader": "^8.1.0",
"typescript": "^4.2.4",
"webpack": "^5.32.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}