-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.74 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
77
78
79
80
81
82
83
84
85
{
"name": "client",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vite --host 0.0.0.0 --port 8080",
"build": "yarn type-check && vite build",
"init-appregistry": "cp -n src/assets/prod.appregistry.json src/assets/appregistry.json",
"lint": "eslint --ext .ts,.vue --ignore-path .gitignore --no-fix src",
"lint:fix": "eslint --ext .ts,.vue --ignore-path .gitignore --fix src",
"lint:test": "eslint test/**/*.test.js",
"lint:test:fix": "eslint --fix test/**/*.test.js",
"test": "tape -r esm test/**/*.test.js | tap-spec",
"test:client:down": "sh ./scripts/stop.sh",
"test:client:restart": "yarn test:client:down; yarn test:client:up",
"test:client:up": "sh ./scripts/start.sh",
"test:server:clean": "cd .. && PIPENV_DONT_LOAD_ENV=1 pipenv run test-server-clean",
"test:server:down": "cd .. && PIPENV_DONT_LOAD_ENV=1 pipenv run test-server-down",
"test:server:restart": "yarn test:server:down; yarn test:server:clean && yarn test:server:up",
"test:server:up": "cd .. && PIPENV_DONT_LOAD_ENV=1 pipenv run test-server-up",
"type-check": "yarn init-appregistry && vue-tsc --noEmit"
},
"dependencies": {
"@girder/oauth-client": "^0.7.6",
"@sentry/vue": "^7.11.1",
"@vitejs/plugin-vue2": "^2.2.0",
"@vue/tsconfig": "^0.1.3",
"dayjs": "^1.9.1",
"direct-vuex": "^0.10.4",
"eslint-import-resolver-alias": "^1.1.2",
"lodash": "^4.17.21",
"multinet": "0.23.1",
"multinet-components": "^0.0.4",
"papaparse": "^5.3.0",
"unplugin-vue-components": "^0.23.0",
"vite": "^4.1.5",
"vue": "^2.7.0",
"vue-gtag": "^1.2.1",
"vue-json-pretty": "^1.9.1",
"vue-router": "^3.6.0",
"vue-tsc": "^1.0.24",
"vuetify": "^2.6.10",
"vuex": "^3.1.3",
"yorkie": "^2.0.0"
},
"devDependencies": {
"@types/lodash": "^4.14.158",
"@types/papaparse": "^5.2.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/eslint-config-airbnb": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"eslint": "^8.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-tape": "^1.1.0",
"eslint-plugin-vue": "^8.0.3",
"eslint-plugin-vuejs-accessibility": "^1.1.0",
"eslint-plugin-vuetify": "^1.0.0-beta.6",
"esm": "^3.2.25",
"lint-staged": "^8.1.5",
"puppeteer": "^2.0.0",
"sass": "1.26.5",
"tap-spec": "^5.0.0",
"tape": "^4.11.0",
"typescript": "~4.4.0",
"vue-template-compiler": "^2.7.0",
"vuetify-loader": "^1.3.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"yarn lint"
],
"*.vue": [
"yarn lint"
]
}
}