kandimat-user-app/package.json

74 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2017-08-09 15:15:42 +02:00
{
2022-02-02 15:01:15 +01:00
"name": "kandimat",
2019-03-20 23:19:13 +01:00
"version": "0.1.0",
2017-08-09 15:15:42 +02:00
"private": true,
"scripts": {
"serve": "npm run svg && vue-cli-service serve",
2019-05-09 07:45:06 +02:00
"build": "npm run svg && npm run admin && npm run data && vue-cli-service build",
2020-06-14 03:13:52 +02:00
"lint": "vue-cli-service lint --fix",
2019-03-20 23:19:13 +01:00
"test:unit": "vue-cli-service test:unit",
2019-04-09 19:36:12 +02:00
"svg": "vsvg -s ./src/assets/svg -t ./src/assets/icons",
"admin": "node bin/admin-yml"
2017-08-14 22:28:12 +02:00
},
2017-08-09 15:15:42 +02:00
"dependencies": {
"apollo-boost": "^0.4.9",
"graphql": "^15.1.0",
"graphql-tag": "^2.10.3",
2019-03-20 23:19:13 +01:00
"lint-staged": "^8.1.5",
"register-service-worker": "^1.6.2",
"stylelint": "^10.0.0",
2019-03-20 23:19:13 +01:00
"stylelint-config-standard": "^18.2.0",
2017-08-13 18:26:20 +02:00
"stylelint-processor-html": "^1.0.0",
2019-03-20 23:19:13 +01:00
"stylelint-webpack-plugin": "^0.10.5",
"vue": "^2.6.6",
"vue-apollo": "^3.0.3",
"vue-feather-icons": "^4.10.0",
2019-04-09 20:02:45 +02:00
"vue-i18n": "^8.10.0",
2019-03-28 19:36:47 +01:00
"vue-markdown": "^2.2.4",
2019-04-09 20:02:45 +02:00
"vue-router": "^3.0.3",
"vue-svgicon": "^3.2.5",
"vuex": "^3.0.1",
"snyk": "^1.214.0"
2017-08-09 15:15:42 +02:00
},
"devDependencies": {
2019-04-09 20:02:45 +02:00
"@vue/cli-plugin-babel": "^3.5.5",
2019-03-20 23:19:13 +01:00
"@vue/cli-plugin-eslint": "^3.5.0",
"@vue/cli-plugin-pwa": "^3.5.0",
"@vue/cli-plugin-unit-jest": "^4.0.0",
2019-04-23 11:50:58 +02:00
"@vue/cli-service": "^3.6.0",
2019-03-20 23:19:13 +01:00
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
2019-04-10 10:01:51 +02:00
"babel-jest": "^24.7.1",
2019-04-09 20:02:45 +02:00
"eslint": "^5.16.0",
2019-03-20 23:19:13 +01:00
"eslint-plugin-vue": "^5.0.0",
2019-04-10 21:57:01 +02:00
"husky": "^1.3.1",
2019-04-09 19:36:12 +02:00
"js-yaml": "^3.13.1",
"node-sass": "^4.14.1",
2019-03-20 23:19:13 +01:00
"normalize.css": "^8.0.1",
2019-04-10 10:17:27 +02:00
"ora": "^3.4.0",
"sass-loader": "^7.2.0",
"vue-template-compiler": "^2.5.21"
2017-08-09 15:15:42 +02:00
},
2019-03-20 23:19:13 +01:00
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
2017-08-09 15:15:42 +02:00
},
2019-03-20 23:19:13 +01:00
"lint-staged": {
2019-04-09 19:43:14 +02:00
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
2019-03-20 23:19:13 +01:00
"git add"
2019-04-09 19:36:12 +02:00
],
"*": [
"npm run admin",
"git add"
2019-03-20 23:19:13 +01:00
]
}
2017-08-09 15:15:42 +02:00
}