-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 739 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 739 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
{
"name": "ts-setup",
"version": "1.0.0",
"description": "Typescript / HTML / CSS setup",
"scripts": {
"start": "webpack --config webpack.dev.js & npm run server",
"build": "NODE_ENV=production webpack --config webpack.prod.js",
"server": "live-server"
},
"author": "Matteo Barone",
"license": "MIT",
"devDependencies": {
"@types/node": "^12.0.0",
"colors": "^1.3.3",
"css-loader": "^2.1.1",
"live-server": "^1.2.1",
"mini-css-extract-plugin": "^0.5.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"terser-webpack-plugin": "^1.2.3",
"ts-loader": "^5.3.3",
"typescript": "^3.4.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-merge": "^4.2.1"
}
}