-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 822 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 822 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
27
28
29
30
31
32
33
34
{
"name": "webclock",
"version": "1.0.0",
"description": "webclock with npm",
"main": "index.js",
"scripts": {
"start": "http-server .",
"build": "webpack --config webpack.prod.js",
"start-dev": "webpack-dev-server --config webpack.dev.js"
},
"keywords": [
"npm"
],
"author": "sigit wasis subekti",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.2",
"html-webpack-plugin": "^4.2.0",
"http-server": "^0.12.1",
"jquery": "^3.5.0",
"moment": "^2.24.0",
"style-loader": "^1.1.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"moment": "^2.24.0"
}
}