-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 KB
/
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
34
35
36
37
38
39
40
41
{
"name": "web-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "run-p watch serve",
"watch": "webpack --watch",
"serve": "http-server -s public",
"build": "webpack",
"build:prod": "webpack --prod",
"build:stats": "webpack --prod --stats",
"clean": "rm -rf public/app node_modules"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"css-loader": "^3.1.0",
"http-server": "^0.11.1",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.4",
"ts-node": "^8.4.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.5.3",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"@types/lodash": "^4.14.139",
"@types/lodash-es": "^4.17.3",
"lodash-es": "^4.17.15",
"preact": "^10.0.0-rc.3",
"rxjs": "^6.5.3",
"use-subscribe": "^1.0.3",
"webpack-bundle-analyzer": "^3.5.0"
}
}