-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.48 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
{
"name": "electron-vue-debugger",
"version": "2.2.3",
"description": "vue.js debugger for electron apps",
"main": "dist/build.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dperrymorrow/electron-vue-debugger.git"
},
"author": "David Morrow",
"license": "MIT",
"bugs": {
"url": "https://github.com/dperrymorrow/electron-vue-debugger/issues"
},
"homepage": "https://github.com/dperrymorrow/electron-vue-debugger#readme",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-preset-env": "^1.5.1",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-prettier": "3.0.0",
"eslint-plugin-vue": "4.7.1",
"file-loader": "^0.9.0",
"lodash.debounce": "4.0.8",
"lodash.kebabcase": "^4.1.1",
"lodash.throttle": "4.1.1",
"prettier": "1.14.3",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"type-of-is": "^3.5.1",
"vue": "^2.3.3",
"vue-loader": "^12.1.0",
"vue-template-compiler": "^2.3.3",
"vuex": "^2.4.0",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"prepublishOnly": "npm run build"
}
}