-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.8 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
{
"name": "teg",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/vue-fontawesome": "^0.1.9",
"@types/d3": "^5.16.3",
"@types/lodash": "^4.14.162",
"@types/uuid": "^3.4.7",
"axios": "^0.19.2",
"bootstrap-vue": "^2.17.3",
"cwait": "^1.1.2",
"d3": "^5.16.0",
"lodash": "^4.17.20",
"sqid": "git+https://github.com/Wikidata/SQID.git",
"uuid": "^3.4.0",
"vue": "^2.6.12",
"vue-bootstrap-typeahead": "^0.2.6",
"vue-class-component": "^7.2.6",
"vue-i18n": "^8.22.0",
"vue-property-decorator": "^8.4.0",
"vue-router": "^3.4.6",
"vuex": "^3.5.1",
"vuex-class": "^0.3.2"
},
"devDependencies": {
"@babel/core": "^7.12.0",
"@types/jest": "^24.9.1",
"@types/webpack": "^4.41.22",
"@vue/cli-plugin-babel": "^4.5.7",
"@vue/cli-plugin-typescript": "^4.5.7",
"@vue/cli-plugin-unit-jest": "^4.5.7",
"@vue/cli-service": "^4.5.7",
"@vue/test-utils": "^1.1.0",
"core-js": "^3.6.5",
"less": "^3.12.2",
"less-loader": "^5.0.0",
"lint-staged": "^9.5.0",
"regenerator-runtime": "^0.13.7",
"ts-jest": "^26.4.1",
"typescript": "^3.9.7",
"typescript-tslint-plugin": "^0.5.5",
"vue-cli-plugin-bootstrap-vue": "^0.4.0",
"vue-cli-plugin-i18n": "^0.6.1",
"vue-template-compiler": "^2.6.12"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}