-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.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
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
{
"name": "prodwarn",
"displayName": "Prodwarn",
"displayDevName": "Prodwarn (in development)",
"description": "Display warning when using the production sites",
"version": "0.4.3",
"private": false,
"author": {
"email": "[email protected]",
"name": "Kim Nguyen",
"url": "https://github.com/kimyvgy"
},
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development webpack -w --hide-modules",
"build": "cross-env NODE_ENV=production webpack --hide-modules",
"release": "cross-env NODE_ENV=production node ./scripts/release.js",
"lint": "vue-cli-service lint"
},
"dependencies": {
"core-js": "^3.4.3",
"element-ui": "^2.13.0",
"idb": "^5.0.4",
"lodash": "^4.17.15",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-property-decorator": "^8.3.0",
"vue-router": "^3.1.3"
},
"devDependencies": {
"@types/chrome": "^0.0.248",
"@types/lodash": "^4.14.153",
"@vue/cli-plugin-babel": "^5.0.0",
"@vue/cli-plugin-eslint": "^5.0.0",
"@vue/cli-plugin-typescript": "^5.0.0",
"@vue/cli-service": "^5.0.0",
"@vue/eslint-config-airbnb": "^7.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"archiver": "^6.0.0",
"autoprefixer": "^10.0.0",
"babel-loader": "^9.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.0",
"css-loader": "^6.0.0",
"eslint": "^8.0.0",
"eslint-plugin-vue": "^9.0.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^5.0.0",
"lint-staged": "^14.0.0",
"mini-css-extract-plugin": "^2.0.0",
"node-sass": "^9.0.0",
"postcss-loader": "^7.0.0",
"sass": "^1.23.7",
"sass-loader": "^13.0.0",
"tailwindcss": "^3.0.0",
"ts-loader": "^9.0.0",
"typescript": "^5.0.0",
"vue-loader": "^17.0.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue,ts}": [
"vue-cli-service lint",
"git add"
]
},
"engines": {
"node": ">=16.0.0"
}
}