-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.25 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
{
"name": "tim",
"version": "1.0.0",
"private": true,
"author": "Simon Arnold <[email protected]> (https://smnarnold.com)",
"browserslist": [
"last 1 version",
"> 0.2%",
"not dead"
],
"scripts": {
"start": "npm-run-all -p lint:* -s build:dev",
"dev": "npm-run-all -p lint:* -s build:dev",
"prod": "npm-run-all -p lint:* -s build:prod",
"lint:scripts": "eslint \"src/**/*.js\" --fix",
"build:dev": "webpack --mode development --watch --info-verbosity none",
"build:prod": "webpack --mode production"
},
"lint-staged": {
"src/**/*.{js}": "eslint"
},
"dependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"autoprefixer": "^9.8.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"bootstrap": "^4.5.0",
"chalk": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"cli-table": "^0.3.1",
"core-js": "^3.6.5",
"css-loader": "^3.5.3",
"cssnano": "^4.1.10",
"detect-keyboard-user": "^1.0.1",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-vue": "^6.2.2",
"faker": "^4.1.0",
"fancy-log": "^1.3.3",
"glob": "^7.1.6",
"gzip-size": "^5.1.1",
"husky": "^4.2.5",
"imagemin-pngquant": "^8.0.0",
"imagemin-webp": "^6.0.0",
"inquirer": "^7.1.0",
"lint-staged": "^10.2.10",
"lodash": "^4.17.19",
"mdn-polyfills": "^5.20.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"node-sass-glob-importer": "^5.3.2",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"postcss-loader": "^3.0.0",
"pretty-bytes": "^5.3.0",
"sass-extract": "^2.1.0",
"sass-loader": "^8.0.2",
"smoothscroll-polyfill": "^0.4.4",
"string-replace-loader": "^2.3.0",
"stylelint": "^13.6.0",
"stylelint-config-sass-guidelines": "^7.0.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-webpack-plugin": "^2.0.0",
"ua-parser-js": "^0.7.21",
"uglifyjs-webpack-plugin": "^2.2.0",
"uuid": "^8.3.1",
"vue-loader": "^15.9.2",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-stream": "^5.2.1"
}
}