-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.9 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
{
"name": "kondor",
"version": "0.3.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build:ts": "rimraf lib && tsc",
"build:webpack": "webpack --mode=production --config webpack.config.js && copyfiles -u 2 public/js/* dist/js",
"build:3rdpage": "copyfiles -u 3 node_modules/koilib/dist/koinos.min.js 3rdpage/js && copyfiles -u 3 node_modules/kondor-js/dist/kondor.min.js 3rdpage/js",
"build:vue": "node manifest.js && copyfiles -u 3 node_modules/koilib/dist/koinos.js public/js && vue-cli-service build --mode production",
"build": "yarn build:ts && yarn build:webpack && yarn build:vue",
"lint": "vue-cli-service lint"
},
"dependencies": {
"core-js": "^3.20.3",
"ethers": "^5.6.2",
"koilib": "^4.0.0",
"koilib3": "npm:[email protected]",
"kondor-js": "^0.2.1",
"vue": "^2.6.14",
"vue-loader": "^15.9.8",
"vue-router": "^3.5.3",
"vue-template-compiler": "^2.6.14",
"vuex": "^3.6.2"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.9",
"@types/chrome": "^0.0.176",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.2.27",
"axios": "^0.25.0",
"babel-eslint": "^10.1.0",
"copyfiles": "^2.4.1",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0",
"fastify": "^3.26.0",
"fastify-static": "^4.5.0",
"rimraf": "^3.0.2",
"ts-loader": "~8.2.0",
"typescript": "^4.5.4",
"webpack-cli": "^4.9.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}