forked from Elevista/vue-minesweeper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
50
51
52
53
54
{
"name": "vue-minesweeper",
"private": true,
"version": "0.0.0",
"description": "Vue Minesweeper",
"keywords": [],
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.4",
"eslint": "^4.15.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jasmine": "^2.8.4",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"file-loader": "^0.11.2",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"uglify-js": "^2.8.0",
"uglifyjs-webpack-plugin": "0.4.3",
"vue": "^2.5.13",
"vue-loader": "^13.6.2",
"vue-template-compiler": "^2.5.13",
"vuejs-loader": "^2.1.0",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.5.1"
},
"scripts": {
"start": "webpack-dev-server --content-base www/ --hot",
"build": "webpack",
"build:prod": "webpack --env.prod",
"lint": "eslint app test --ext .js,.mjs,.vue",
"lint:fix": "eslint app test --ext .js,.mjs,.vue --fix"
},
"main": "app.js",
"repository": {
"type": "git"
},
"author": {
"name": "Elevista",
"email": "[email protected]",
"homepage": "http://sunnyholic.com"
},
"license": ""
}