forked from javrasya/river-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.81 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.81 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "river-admin-ui",
"version": "0.7.0",
"private": true,
"scripts": {
"serve": "set NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --port 8000",
"build": "set NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build",
"_fix_html": "sed -i '' 's/\\(\\/\\{0,1\\}[a-zA-Z0-9\\-_\\.]*\\)*\\(\\/\\{0,1\\}static\\/\\)/\\/static\\//g' ./river_admin/templates/index.html",
"_fix_js": "sed -i '' 's/\\(\\/\\{0,1\\}[a-zA-Z0-9\\-_\\.]*\\)*\\(\\/\\{0,1\\}static\\/\\)/\\/static\\//g' $(find ./river_admin/static/ -type f -iname '*.js')",
"_fix_js_map": "sed -i '' 's/\\(\\/\\{0,1\\}[a-zA-Z0-9\\-_\\.]*\\)*\\(\\/\\{0,1\\}static\\/\\)/\\/static\\//g' $(find ./river_admin/static/ -type f -iname '*.js.map')",
"_fix_css": "sed -i '' 's/\\(\\/\\{0,1\\}[a-zA-Z0-9\\-_\\.]*\\)*\\(\\/\\{0,1\\}static\\/\\)/\\/static\\//g' $(find ./river_admin/static/ -type f -iname '*.css')",
"prebuild": "rm -rf ./river_admin/templates/* && rm -rf ./river_admin/static/*",
"postbuild": "npm run _fix_html && npm run _fix_js && npm run _fix_js_map && npm run _fix_css && mv ./river_admin/templates/favicon.ico ./river_admin/static/",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"test:debug": "node --inspect-brk node_modules/.bin/vue-cli-service test:unit --no-cache --watch --runInBand"
},
"dependencies": {
"@mdi/font": "^4.4.95",
"acorn": "^7.1.1",
"axios": "^0.21.1",
"core-js": "^2.6.5",
"d3-drag": "^3.0.0",
"d3-tip": "^0.9.1",
"dagre-d3": "^0.6.3",
"minimist": "^1.2.2",
"radix-vue": "^1.5.3",
"serialize-javascript": "^3.1.0",
"vue": "^2.6.10",
"vue-codemirror": "^4.0.6",
"vue-js-popover": "^1.2.1",
"vue-moment": "^4.1.0",
"vue-router": "^3.1.3",
"vue-smooth-dnd": "^0.8.0",
"vuetify": "^2.0.19",
"vuex": "^3.1.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.11.0",
"@vue/cli-plugin-eslint": "^3.11.0",
"@vue/cli-plugin-unit-jest": "^4.0.5",
"@vue/cli-service": "^3.11.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"font-awesome": "^4.7.0",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}