-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 841 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
{
"name": "webpack-ts-scss",
"version": "1.0.0",
"main": "index.js",
"dependencies": {
"browser-sync": "^2.26.3",
"rxjs": "^6.3.3",
"rxjs-compat": "^6.3.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"dev": "webpack-dev-server --progress --colors",
"start": "webpack && npm run dev"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^5.2.2",
"typescript": "^3.1.3",
"webpack": "^4.5.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "3.1.10"
}
}