-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "vue-minesweeper",
"private": true,
"version": "0.0.1",
"description": "Vue Minesweeper",
"keywords": [],
"devDependencies": {
"css-loader": "^2.1.0",
"eslint-plugin-vue": "^5.1.0",
"file-loader": "^3.0.1",
"lodash": "^4.17.11",
"push-dir": "^0.4.1",
"standard": "^12.0.1",
"style-loader": "^0.23.1",
"vue": "^2.5.22",
"vue-loader": "^15.5.1",
"vue-template-compiler": "^2.5.22",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"scripts": {
"start": "webpack-dev-server --content-base www/ --hot",
"build": "webpack",
"build:prod": "webpack --mode=production",
"gh-pages": "npm run build:prod && push-dir --dir=www --branch=gh-pages --cleanup",
"lint": "eslint --ext .js,.mjs,.vue . --fix"
},
"main": "app.js",
"repository": {
"type": "git"
},
"author": {
"name": "Elevista",
"email": "sunnyholic@sunnyholic.com",
"homepage": "http://sunnyholic.com"
},
"eslintIgnore": ["node_modules", "www", "build"],
"license": ""
}