-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 832 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 832 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
35
36
{
"name": "nodejs_webpack",
"version": "1.0.0",
"keywords": [
"util",
"functional",
"server",
"client",
"browser"
],
"author": "Allan J. Odeke",
"contributors": [],
"dependencies": {},
"devDependencies": {
"css-loader": "^2.1.1",
"style-loader": "^0.23.1",
"webpack": "^4.31.0",
"ws": "3.3.2"
},
"description": "Trying out NodeJs and Webpack",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"build:prod": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/ajoluvya/node_webpack.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/ajoluvya/node_webpack/issues"
},
"homepage": "https://github.com/ajoluvya/node_webpack#readme"
}