-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 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
{
"name": "my-webpack-project",
"version": "1.0.0",
"description": "My webpack project",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack-cli serve",
"deploy": "webpack && firebase deploy"
},
"author": "Nameless",
"license": "ISC",
"devDependencies": {
"@webpack-cli/init": "^1.1.1",
"css-loader": "^5.0.1",
"html-webpack-plugin": "^4.5.0",
"node-sass": "^5.0.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.0.3",
"ts-loader": "^8.0.13",
"typescript": "^4.1.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1"
},
"dependencies": {
"@material/mwc-button": "^0.20.0",
"@material/mwc-fab": "^0.20.0",
"@material/mwc-slider": "^0.20.0",
"@material/mwc-textfield": "^0.20.0",
"axios": "^0.21.1",
"firebase": "^8.2.1",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0",
"rambda": "^6.4.0"
}
}