-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.41 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "webpack-plugin-spark",
"version": "1.0.3",
"description": "Serve spark UI with hot reloading",
"repository": "YouSee/webpack-plugin-spark",
"main": "dist/plugin.js",
"scripts": {
"start": "npm run build -- -w",
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
"clean": "del-cli dist",
"lint": "eslint --cache src",
"prepare": "npm run build",
"release": "standard-version",
"security": "npm audit",
"test": "echo \"Error: no test specified\" && exit 1",
"pretest": "npm run lint",
"defaults": "webpack-defaults"
},
"keywords": [
"rdk",
"spark",
"ui",
"webpack",
"hot",
"reload",
"serve"
],
"author": "Yousee",
"license": "ISC",
"files": [
"dist"
],
"peerDependencies": {
"webpack": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@webpack-contrib/defaults": "^5.0.0",
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
"cross-env": "^5.2.0",
"del-cli": "^2.0.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2",
"standard-version": "^6.0.1",
"webpack": "^4.33.0"
},
"dependencies": {
"chalk": "^2.4.2",
"express": "^4.17.1",
"joi": "^14.3.1",
"ws": "^7.0.0"
}
}