-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.95 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
67
68
69
70
71
72
73
74
75
76
{
"name": "Zocurelia",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "HOST=127.0.0.1 vue-cli-service serve",
"build": "vue-cli-service build",
"test": "vue-cli-service lint && yarn run test:unit",
"lint": "vue-cli-service lint",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'",
"test:unit": "jest",
"test:unit:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --no-cache --runInBand"
},
"dependencies": {
"babel-core": "^6.26.3",
"hypothesis-api-client": "https://github.com/xldrkp/hypothesis-api-client.git",
"vue": "^2.6.10",
"vue-async-computed": "^3.7.0",
"vue-cookie-law": "^1.10.0",
"vue-date-filters": "^1.1.0",
"vue-i18n": "^8.0.0",
"vue-js-modal": "^1.3.31",
"vue-router": "^3.0.7",
"vue-simple-markdown": "^1.0.9",
"vuex": "^3.1.1",
"zotero-api-client": "^0.25.0"
},
"devDependencies": {
"@babel/preset-env": "^7.5.5",
"@vue/cli-plugin-babel": "^3.9.0",
"@vue/cli-plugin-eslint": "^3.9.0",
"@vue/cli-service": "^3.9.0",
"@vue/test-utils": "^1.0.0-beta.29",
"axios": "^0.18.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.9.0",
"core-js": "^2.6.5",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"jest": "^24.8.0",
"vue-cli-plugin-axios": "^0.0.4",
"vue-cli-plugin-i18n": "^0.6.0",
"vue-jest": "^3.0.4",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"jest": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"jest": {
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "vue-jest"
}
}
}