-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 2.1 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
{
"name": "@sherlog/prisma",
"version": "1.0.2",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"docker:build": "docker build -t sherlog/prisma .",
"docker:test": "yarn run docker:build && docker run -it sherlog/prisma",
"test": "yarn run docker:test",
"test:unit": "cross-env NODE_ENV=test vue-cli-service test:unit",
"test:e2e": "cross-env NODE_ENV=test vue-cli-service test:e2e --browser chrome",
"lint": "cross-env NODE_ENV=test vue-cli-service lint",
"lint:fix": "cross-env NODE_ENV=test vue-cli-service lint --fix",
"test:e2e:headless": "cross-env NODE_ENV=test vue-cli-service test:e2e --headless --browser chrome",
"coverage": "npx nyc report --reporter=lcov --reporter=text && npx nyc report --reporter=text-summary",
"coveralls": "coveralls < ./coverage/lcov.info"
},
"dependencies": {
"ascii-horizontal-barchart": "^1.3.3",
"bootstrap": "^4.5.2",
"d3": "^6.1.1",
"format-duration": "^1.3.1",
"lodash": "^4.17.20",
"moment": "^2.27.0",
"pako": "^1.0.11",
"visibilityjs": "^2.0.2",
"vue": "^2.6.11",
"vue-router": "^3.4.9",
"vue-slider-component": "^3.2.11",
"vue-virtual-scroll-list": "^2.3.2",
"workerpool": "^6.0.3"
},
"devDependencies": {
"@cypress/code-coverage": "^3.8.6",
"@fullhuman/postcss-purgecss": "^3.0.0",
"@fullhuman/vue-cli-plugin-purgecss": "~3.0.1",
"@vue/cli-plugin-babel": "~4.5.9",
"@vue/cli-plugin-e2e-cypress": "~4.5.9",
"@vue/cli-plugin-eslint": "~4.5.9",
"@vue/cli-plugin-router": "~4.5.6",
"@vue/cli-plugin-unit-jest": "~4.5.9",
"@vue/cli-service": "~4.5.9",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/test-utils": "^1.1.1",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.0.0",
"browserslist": "^4.16.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.3",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-vue": "^7.2.0",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"vue-template-compiler": "^2.6.11",
"webpack": "^5.10.0"
}
}