-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
83 lines (83 loc) · 2.46 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "vue-defuse",
"version": "1.1.1",
"description": "A minesweeper implentation in vue.js",
"author": "Frank Topel <[email protected]>, Jan Erik Bertram <[email protected]>",
"private": true,
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"start": "npm run dev",
"lint": "eslint --ext .js,.vue src",
"build": "node build/build.js",
"build-npm": "node build/build-npm.js"
},
"dependencies": {
"@babel/runtime": "^7.14.6",
"axios": "^0.28.0",
"es6-promise": "^4.2.8",
"eslint-plugin-vue": "^4.7.1",
"qs": "^6.11.0",
"vue": "^2.7.14",
"vue2-touch-events": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-syntax-jsx": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.14.5",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^8.0.4",
"babel-plugin-transform-vue-jsx": "^4.0.1",
"chalk": "^4.1.1",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^1.0.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^2.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^4.5.2",
"node-notifier": "^7.0.2",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"ora": "^3.0.0",
"portfinder": "^1.0.28",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"rimraf": "^3.0.2",
"sass-loader": "^7.1.0",
"semver": "^5.6.0",
"shelljs": "^0.8.5",
"ssri": "^6.0.1",
"tapable": "^2.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.1",
"vue-loader": "^15.9.7",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.7.14",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^4.1.4"
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.4.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 9"
]
}