-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.7 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
{
"name": "flame-okrs",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt-ts",
"build": "run-s build:*",
"build:nuxt": "cross-env NODE_ENV=production nuxt-ts build && nuxt-ts start",
"ci": "run-s test build",
"start:production": "cross-env NODE_ENV=production yarn nuxt-ts generate && yarn nuxt-ts start --port 9999",
"analyze": "nuxt-ts build --analyze",
"lint": "run-s lint:*",
"lint:files": "ls-lint",
"lint:eslint": "eslint --cache --ext .ts,.js,.vue --ignore-path .gitignore .",
"lint:prettier": "prettier --write --loglevel warn .",
"test": "run-s test:unit lint",
"test:unit": "cross-env NODE_ENV=test jest --passWithNoTests",
"test:unit:debug": "cross-env NODE_ENV=test node --inspect-brk ./node_modules/jest/bin/jest.js --no-cache --runInBand",
"test:cov": "cross-env NODE_ENV=test jest --coverage --passWithNoTests",
"test:e2e": " cross-env NODE_ENV=test jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@nuxt/types": "2.14.4",
"@nuxt/typescript-runtime": "1.0.0",
"@nuxtjs/axios": "^5.11.0",
"@nuxtjs/markdownit": "^1.2.10",
"@nuxtjs/pwa": "^3.0.0-beta.20",
"@vuejs-community/vue-filter-date-format": "^1.5.0",
"aws-sdk": "^2.813.0",
"date-fns": "^2.15.0",
"echarts": "^5.0.0",
"element-ui": "^2.13.2",
"js-cookie": "^2.2.1",
"moment": "^2.29.1",
"node-sass": "^4.14.1",
"nuxt": "2.14.4",
"nuxt-clipboard2": "^0.2.1",
"sass-loader": "^9.0.2",
"vue-class-component": "^7.2.5",
"vue-infinite-loading": "^2.4.5",
"vue-property-decorator": "^9.0.0",
"vue-simplemde": "^1.1.2",
"xlsx": "^0.16.8"
},
"devDependencies": {
"@ls-lint/ls-lint": "^1.9.0",
"@nuxt/types": "^2.14.7",
"@nuxt/typescript-build": "^2.0.3",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/eslint-config": "^3.1.0",
"@nuxtjs/eslint-config-typescript": "^3.0.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@types/jest": "^26.0.4",
"@types/js-cookie": "^2.2.6",
"@vue/test-utils": "^1.0.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-plugin-component": "^1.1.1",
"chalk": "^4.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-nuxt": "^1.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-wdio": "^6.0.12",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.0",
"ts-loader": "^8.0.6",
"typescript": "3.9.6",
"vue-jest": "^3.0.4",
"vue-svg-loader": "^0.16.0"
}
}