aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-06 20:20:37 +0000
committerFuwn <[email protected]>2021-05-06 20:20:37 +0000
commit39d2fcc94ccd73db489590e1c327a6b34e0e73a3 (patch)
treea41f897af916417a9b040b599252d4e23a16d658 /package.json
parentInitial commit (diff)
downloadfrontend-39d2fcc94ccd73db489590e1c327a6b34e0e73a3.tar.xz
frontend-39d2fcc94ccd73db489590e1c327a6b34e0e73a3.zip
feat(global): :star:
Diffstat (limited to 'package.json')
-rw-r--r--package.json59
1 files changed, 59 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..c9cbf9e
--- /dev/null
+++ b/package.json
@@ -0,0 +1,59 @@
+{
+ "name": "senpy-frontend",
+ "version": "0.1.0",
+ "private": true,
+ "scripts": {
+ "serve": "vue-cli-service serve",
+ "build": "vue-cli-service build",
+ "test:unit": "vue-cli-service test:unit",
+ "lint": "vue-cli-service lint"
+ },
+ "dependencies": {
+ "core-js": "^3.6.5",
+ "normalize.css": "^8.0.1",
+ "sakura.css": "^1.3.1",
+ "vue": "^3.0.0",
+ "vue-class-component": "^8.0.0-0",
+ "vue-router": "^4.0.0-0",
+ "vuex": "^4.0.0-0"
+ },
+ "devDependencies": {
+ "@commitlint/cli": "^12.1.1",
+ "@commitlint/config-conventional": "^12.1.1",
+ "@types/chai": "^4.2.11",
+ "@types/mocha": "^5.2.4",
+ "@typescript-eslint/eslint-plugin": "^4.18.0",
+ "@typescript-eslint/parser": "^4.18.0",
+ "@vue/cli-plugin-babel": "~4.5.0",
+ "@vue/cli-plugin-eslint": "~4.5.0",
+ "@vue/cli-plugin-router": "~4.5.0",
+ "@vue/cli-plugin-typescript": "~4.5.0",
+ "@vue/cli-plugin-unit-mocha": "~4.5.0",
+ "@vue/cli-plugin-vuex": "~4.5.0",
+ "@vue/cli-service": "~4.5.0",
+ "@vue/compiler-sfc": "^3.0.0",
+ "@vue/eslint-config-airbnb": "^5.0.2",
+ "@vue/eslint-config-typescript": "^7.0.0",
+ "@vue/test-utils": "^2.0.0-0",
+ "chai": "^4.1.2",
+ "commitizen": "^4.2.3",
+ "cz-conventional-commit": "^1.0.6",
+ "eslint": "^6.7.2",
+ "eslint-plugin-import": "^2.20.2",
+ "eslint-plugin-vue": "^7.0.0",
+ "husky": "^6.0.0",
+ "lint-staged": "^9.5.0",
+ "sass": "^1.26.5",
+ "sass-loader": "^8.0.2",
+ "typescript": "~4.1.5"
+ },
+ "gitHooks": {
+ "pre-commit": "lint-staged"
+ },
+ "lint-staged": {
+ "*.{js,jsx,vue,ts,tsx}": [
+ "vue-cli-service lint",
+ "git add"
+ ]
+ }
+}