2021-04-17 03:16:54 +00:00
|
|
|
{
|
|
|
|
"name": "mitra-web",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "Mitra web UI",
|
|
|
|
"license": "AGPL-3.0",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"serve": "vue-cli-service serve",
|
|
|
|
"build": "vue-cli-service build",
|
|
|
|
"test:unit": "vue-cli-service test:unit",
|
|
|
|
"test": "npm run test:unit",
|
|
|
|
"lint:js": "vue-cli-service lint --no-fix",
|
|
|
|
"lint:css": "stylelint 'src/**/*.{vue,scss}'",
|
|
|
|
"lint": "npm run lint:js && npm run lint:css",
|
|
|
|
"start": "npm run serve"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"ethereum-blockies-base64": "^1.0.2",
|
2022-02-11 22:46:37 +00:00
|
|
|
"ethers": "^5.5.4",
|
2021-04-17 03:16:54 +00:00
|
|
|
"luxon": "^1.26.0",
|
|
|
|
"markdown-it": "^12.2.0",
|
|
|
|
"markdown-it-link-attributes": "^3.0.0",
|
2021-12-14 15:41:58 +00:00
|
|
|
"vue": "^3.2.26",
|
2021-04-17 03:16:54 +00:00
|
|
|
"vue-class-component": "^8.0.0-0",
|
|
|
|
"vue-property-decorator": "^10.0.0-rc.3",
|
2021-12-02 21:02:54 +00:00
|
|
|
"vue-router": "^4.0.0-0",
|
|
|
|
"vue3-click-away": "^1.2.1"
|
2021-04-17 03:16:54 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-04-30 12:49:45 +00:00
|
|
|
"@lavamoat/allow-scripts": "^2.0.3",
|
2021-04-17 03:16:54 +00:00
|
|
|
"@lavamoat/preinstall-always-fail": "^1.0.0",
|
|
|
|
"@types/chai": "^4.2.11",
|
|
|
|
"@types/luxon": "^1.26.5",
|
|
|
|
"@types/mocha": "^5.2.4",
|
|
|
|
"@types/sinon": "^10.0.4",
|
|
|
|
"@types/sinon-chai": "^3.2.5",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^4.18.0",
|
|
|
|
"@typescript-eslint/parser": "^4.18.0",
|
2022-03-18 07:34:47 +00:00
|
|
|
"@vue/cli-plugin-eslint": "~4.5.16",
|
|
|
|
"@vue/cli-plugin-router": "~4.5.16",
|
|
|
|
"@vue/cli-plugin-typescript": "~4.5.16",
|
|
|
|
"@vue/cli-plugin-unit-mocha": "~4.5.16",
|
|
|
|
"@vue/cli-service": "~4.5.16",
|
2021-12-03 23:25:17 +00:00
|
|
|
"@vue/compiler-sfc": "^3.2.23",
|
2021-04-17 03:16:54 +00:00
|
|
|
"@vue/eslint-config-standard": "^5.1.2",
|
|
|
|
"@vue/eslint-config-typescript": "^7.0.0",
|
|
|
|
"@vue/test-utils": "^2.0.0-0",
|
|
|
|
"chai": "^4.1.2",
|
|
|
|
"eslint": "^6.7.2",
|
|
|
|
"eslint-plugin-import": "^2.20.2",
|
|
|
|
"eslint-plugin-node": "^11.1.0",
|
|
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
|
|
"eslint-plugin-standard": "^4.0.0",
|
|
|
|
"eslint-plugin-vue": "^7.0.0",
|
|
|
|
"node-sass": "^4.12.0",
|
|
|
|
"sass-loader": "^8.0.2",
|
|
|
|
"sinon": "^11.1.2",
|
|
|
|
"sinon-chai": "^3.7.0",
|
|
|
|
"stylelint": "^13.13.1",
|
|
|
|
"stylelint-config-sass-guidelines": "^8.0.0",
|
|
|
|
"typescript": "~4.1.5"
|
|
|
|
},
|
|
|
|
"lavamoat": {
|
|
|
|
"allowScripts": {
|
|
|
|
"@lavamoat/preinstall-always-fail": false,
|
|
|
|
"yorkie": false,
|
|
|
|
"core-js": false,
|
|
|
|
"nodent-runtime": false,
|
|
|
|
"ejs": false,
|
2022-04-30 12:49:45 +00:00
|
|
|
"node-sass": true,
|
|
|
|
"fsevents": false,
|
|
|
|
"@vue/cli-plugin-eslint>yorkie": false,
|
|
|
|
"@vue/cli-plugin-unit-mocha>mochapack>@babel/runtime-corejs2>core-js": false,
|
|
|
|
"@vue/cli-plugin-unit-mocha>mochapack>nodent-runtime": false,
|
|
|
|
"@vue/cli-service>webpack-bundle-analyzer>ejs": false,
|
|
|
|
"@vue/cli-plugin-unit-mocha>mochapack>chokidar>fsevents": false,
|
|
|
|
"@vue/cli-service>webpack-dev-server>chokidar>fsevents": false,
|
|
|
|
"sass-loader>webpack>watchpack>watchpack-chokidar2>chokidar>fsevents": false
|
2021-04-17 03:16:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|