-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.42 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
84
{
"name": "vue-sandbox",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "NODE_ENV='development' ./node_modules/.bin/webpack serve --config ./webpack.config.js --https --cert ./cert.pem --key ./key.pem",
"build": "./node_modules/.bin/webpack --env.BUILD_ENV='production' --config webpack.config.js"
},
"dependencies": {
"@babel/runtime": "7.13.7",
"@babel/runtime-corejs3": "7.13.7",
"@poool/junipero": "1.6.0",
"asn1.js": "^5.4.1",
"auto-changelog": "2.2.1",
"bootstrap": "4.6.0",
"buffer": "^6.0.3",
"compression": "1.7.4",
"core-js": "3.9.0",
"crypto-browserify": "^3.12.0",
"date-fns": "2.17.0",
"exports-loader": "2.0.0",
"express": "4.17.1",
"stream-browserify": "^3.0.0",
"vue": "2.6.12",
"vue-loader": "15.9.6",
"vue-router": "3.5.1"
},
"devDependencies": {
"@babel/core": "7.13.1",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.13.0",
"@babel/plugin-proposal-object-rest-spread": "7.13.0",
"@babel/plugin-proposal-optional-chaining": "7.13.0",
"@babel/plugin-transform-runtime": "7.13.7",
"@babel/preset-env": "7.13.5",
"@vue/babel-preset-app": "4.5.11",
"@vue/cli-plugin-babel": "4.5.11",
"@vue/cli-plugin-eslint": "4.5.11",
"@vue/cli-service": "4.5.11",
"autoprefixer": "^10.2.4",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "3.0.0",
"css-loader": "5.1.0",
"eslint": "7.20.0",
"eslint-config-fbjs": "3.1.1",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-flowtype": "5.3.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-relay": "1.8.2",
"eslint-plugin-vue": "7.6.0",
"file-loader": "6.2.0",
"html-loader": "2.1.1",
"html-webpack-plugin": "5.2.0",
"postcss-loader": "5.0.0",
"raw-loader": "4.0.2",
"style-loader": "2.0.0",
"stylus": "0.54.8",
"stylus-loader": "5.0.0",
"terser-webpack-plugin": "5.1.1",
"vue-template-compiler": "2.6.12",
"webpack": "5.24.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "3.11.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}