forked from fritx/vue-at
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.16 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
{
"name": "vue-at",
"description": "At.js for Vue",
"version": "2.5.0-beta.2",
"author": "Fritz Lin <uxfritz@163.com>",
"repository": "https://github.com/fritx/vue-at",
"scripts": {
"dev": "webpack-dev-server --config webpack/demo --open --inline --hot",
"demo": "webpack --config webpack/demo --progress --hide-modules",
"build": "webpack --config webpack/prod --progress --hide-modules",
"prepublish": "npm run build"
},
"main": "dist/vue-at.js",
"dependencies": {},
"engines": {
"node": ">=14 <17"
},
"peerDependencies": {
"vue": "2.x"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-proposal-decorators": "^7.16.5",
"@babel/plugin-proposal-do-expressions": "^7.16.5",
"@babel/plugin-proposal-export-default-from": "^7.16.5",
"@babel/plugin-proposal-export-namespace-from": "^7.16.5",
"@babel/plugin-proposal-function-bind": "^7.16.5",
"@babel/plugin-proposal-function-sent": "^7.16.5",
"@babel/plugin-proposal-json-strings": "^7.16.5",
"@babel/plugin-proposal-logical-assignment-operators": "^7.16.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.5",
"@babel/plugin-proposal-numeric-separator": "^7.16.5",
"@babel/plugin-proposal-optional-chaining": "^7.16.5",
"@babel/plugin-proposal-pipeline-operator": "^7.16.5",
"@babel/plugin-proposal-throw-expressions": "^7.16.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.16.5",
"babel-loader": "^8.2.3",
"babel-preset-minify": "^0.5.1",
"cross-env": "^7.0.3",
"css-loader": "^0.28.11",
"element-ui": "^2.15.6",
"file-loader": "^1.1.9",
"node-sass": "^7.0.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.23.1",
"textarea-caret": "^3.1.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^4.1.1",
"vue": "^2.6.14",
"vue-loader": "^10.3.0",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.14",
"vuetify": "^2.6.1",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.1.0-beta.9"
}
}