summaryrefslogtreecommitdiffstats
path: root/front/package.json
blob: 6b068aa8bc01c6e0dd9d4bac23c4bdd4d79b6328 (plain)
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
  "name": "front",
  "version": "0.1.0",
  "private": true,
  "scripts": {
    "dev": "node build/dev-server.js",
    "build": "scripts/i18n-compile.sh && node build/build.js",
    "lint": "eslint --ext .js,.vue src",
    "lint-fix": "eslint --fix --ext .js,.vue src",
    "e2e": "node test/e2e/runner.js",
    "unit": "karma start test/unit/karma.conf.js --single-run",
    "unit:watch": "karma start test/unit/karma.conf.js --single-run=false",
    "test": "npm run unit && npm run e2e",
    "i18n-extract": "scripts/i18n-extract.sh",
    "i18n-compile": "scripts/i18n-compile.sh"
  },
  "engines": {
    "node": ">= 4.0.0",
    "npm": ">= 3.0.0"
  },
  "dependencies": {
    "@johmun/vue-tags-input": "^2.1.0",
    "@sentry/browser": "^5.10.2",
    "@sentry/integrations": "^5.10.2",
    "axios": "^0.21.1",
    "babel-plugin-add-module-exports": "^1.0.2",
    "babel-plugin-lodash": "^3.2.11",
    "bootstrap": "^4.4.1",
    "bootstrap-vue": "^2.1.0",
    "core-js": "^2.6.5",
    "cropperjs": "^1.5.6",
    "karma-mocha-reporter": "^2.2.1",
    "localforage": "^1.7.3",
    "lodash": "^4.17.19",
    "lodash.merge": "^4.6.2",
    "moment": "^2.24.0",
    "object-path": "^0.11.5",
    "opn": "^6.0.0",
    "phoenix": "^1.4.11",
    "vue": "^2.6.11",
    "vue-gettext": "^2.1.6",
    "vue-router": "^3.1.3",
    "vue-simple-suggest": "^1.10.1",
    "vue-string-filter": "^1.3.0",
    "vuedraggable": "^2.23.2",
    "vuelidate": "^0.7.4",
    "vuex": "^3.1.2",
    "wavesurfer.js": "^3.2.0"
  },
  "devDependencies": {
    "@babel/polyfill": "^7.7.0",
    "@vue/cli-plugin-babel": "^4.1.1",
    "@vue/cli-plugin-eslint": "^4.1.1",
    "@vue/cli-service": "^3.12.0",
    "@vue/eslint-config-standard": "^5.0.1",
    "@vue/test-utils": "^1.0.0-beta.30",
    "babel-core": "^6.0.0",
    "babel-eslint": "^10.0.3",
    "babel-helper-vue-jsx-merge-props": "^2.0.3",
    "babel-loader": "^7.0.0",
    "babel-plugin-syntax-jsx": "^6.18.0",
    "babel-plugin-transform-runtime": "^6.0.0",
    "babel-plugin-transform-vue-jsx": "3",
    "babel-preset-env": "^1.7.0",
    "babel-preset-es2015": "^6.0.0",
    "babel-preset-stage-2": "^6.0.0",
    "babel-register": "^6.0.0",
    "chai": "^4.2.0",
    "easygettext": "^2.9.0",
    "eslint": "^6.8.0",
    "eslint-friendly-formatter": "^4.0.1",
    "eslint-loader": "^3.0.3",
    "eslint-plugin-import": "^2.19.1",
    "eslint-plugin-node": "^11.0.0",
    "eslint-plugin-promise": "^4.0.0",
    "eslint-plugin-standard": "^4.0.1",
    "eslint-plugin-vue": "^6.1.0",
    "eventsource-polyfill": "^0.9.6",
    "karma": "^6.3.16",
    "karma-coverage": "^2.0.1",
    "karma-firefox-launcher": "^1.1.0",
    "karma-mocha": "^1.2.0",
    "karma-sinon-chai": "^2.0.2",
    "karma-sourcemap-loader": "^0.3.7",
    "karma-spec-reporter": "0.0.32",
    "karma-webpack": "^4.0.0-rc.3",
    "mocha": "^6.2.2",
    "sass": "^1.24.0",
    "sass-loader": "git://github.com/webpack-contrib/sass-loader",
    "shelljs": "^0.8.3",
    "sinon": "^7.5.0",
    "sinon-chai": "^3.4.0",
    "vue-loader": "^14.0.0",
    "vue-template-compiler": "^2.6.11",
    "webpack-hot-middleware": "^2.25.0"
  },
  "eslintConfig": {
    "root": true,
    "env": {
      "node": true
    },
    "extends": [
      "plugin:vue/essential",
      "@vue/standard"
    ],
    "rules": {},
    "parserOptions": {
      "parser": "babel-eslint"
    }
  },
  "postcss": {
    "plugins": {
      "autoprefixer": {}
    }
  },
  "browserslist": [
    "> 1%",
    "last 2 versions"
  ]
}