-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.59 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.59 KB
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
{
"name": "biogrid",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt-ts build",
"start": "nuxt-ts start",
"export": "nuxt-ts export",
"serve": "nuxt-ts serve",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint": "npm run lint:js",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "cross-env TEST=unit ava ./test/specs/**/*",
"test:e2e": "cross-env TEST=e2e ava ./test/e2e/**/*"
},
"dependencies": {
"@nuxt/typescript-runtime": "^0.4.10",
"@nuxtjs/axios": "^5.11.0",
"@types/uuid": "^8.0.0",
"moment": "^2.27.0",
"nuxt": "^2.13.0",
"nuxt-class-component": "^1.3.0",
"nuxt-property-decorator": "^2.7.2",
"uuid": "^8.2.0"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@ava/typescript": "^1.1.1",
"@mdi/font": "^5.3.45",
"@nuxt/typescript-build": "^1.0.3",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/eslint-config": "^3.0.0",
"@nuxtjs/eslint-config-typescript": "^2.0.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@nuxtjs/style-resources": "^1.0.0",
"@nuxtjs/vuetify": "^1.11.2",
"@vue/test-utils": "^1.0.3",
"ava": "^3.9.0",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"cross-env": "^7.0.2",
"eslint": "^7.2.0",
"eslint-plugin-nuxt": "^1.0.0",
"jsdom": "^16.2.2",
"jsdom-global": "^3.0.2",
"node-sass": "^4.14.1",
"require-extension-hooks": "^0.3.3",
"require-extension-hooks-babel": "^1.0.0",
"require-extension-hooks-vue": "^3.0.0",
"sass-loader": "^7.1.0"
}
}