-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 920 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
34
35
{
"name": "calculator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./dist/*",
"start": "webpack-dev-server --progress",
"build": "npm run clean && webpack -p --progress"
},
"author": "Justin Chi",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.4",
"glob": "^7.1.2",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.3",
"path": "^0.12.7",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.1",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"@material/animation": "^0.2.3",
"@material/auto-init": "^0.1.2",
"@material/ripple": "^0.6.2",
"@material/theme": "^0.1.5",
"material-components-web": "^0.13.0"
}
}