-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.75 KB
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
{
"name": "@arcblock/ocap-vue-starter",
"version": "0.2.0",
"files": [
"template",
"generator.js"
],
"repository": {
"type": "git",
"url": "https://github.com/ArcBlock/ocap-vue-starter"
},
"author": "wangshijun <shijun@arcblock.io> (https://ocap.arcblock.io)",
"homepage": "https://github.com/ArcBlock/ocap-vue-starter",
"bugs": {
"url": "https://github.com/ArcBlock/ocap-vue-starter/issues",
"email": "shijun@arcblock.io"
},
"publishConfig": {
"access": "public"
},
"contributors": [
"wangshijun <shijun@arcblock.io> (https://ocap.arcblock.io)"
],
"scripts": {
"prepublish": "rm -rf template/* && cp -r src template/ && cp -r public template/ && cp .editorconfig template/_editorconfig && cp vue.config.js template/",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"deploy": "./deploy.sh",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@arcblock/ocap-js": "latest",
"babel-polyfill": "^6.26.0",
"semantic-ui-css": "^2.3.3",
"semantic-ui-vue": "^0.3.3",
"vue": "^2.5.17",
"vue-d3-network": "^0.1.26",
"vue-flowy": "^0.1.5",
"vue-graph": "^0.4.1",
"vue-router": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-service": "^3.0.1",
"vue-template-compiler": "^2.5.17"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}