-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.5 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
{
"name": "amazing-searcher",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --config=webpack.dev.js --mode=development",
"build": "webpack --config webpack.prod.js"
},
"dependencies": {
"core-js": "^3.8.3",
"csv-loader": "^3.0.3",
"socket.io": "^3.1.2",
"vue": "^3.2.37"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@tailwindcss/postcss7-compat": "^2.0.3",
"@vue/cli-plugin-babel": "^4.5.11",
"@vue/cli-plugin-eslint": "^4.5.11",
"@vue/cli-service": "^4.5.11",
"@vue/compiler-sfc": "^3.0.0",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.3",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.5.0",
"postcss": "^7.0.35",
"postcss-prefix-selector": "^1.7.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.3",
"vue-loader": "^16.1.2",
"webpack-cli": "^4.5.0",
"zip-webpack-plugin": "^4.0.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"browser": true,
"webextensions": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browser": {
"fs": false
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"volta": {
"node": "16.20.2"
}
}