forked from dalibo/pev2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.72 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "pev2",
"keywords": [
"PostgreSQL",
"vuejs",
"SQL",
"plan"
],
"version": "0.24.0",
"main": "./dist/pev2.common.js",
"files": [
"dist/*"
],
"scripts": {
"serve": "vue-cli-service serve",
"lint": "vue-cli-service lint",
"build": "vue-cli-service build --target lib --name pev2 ./src/components/Plan.vue && EXTRACT_CSS=true vue-cli-service build --target lib --name pev2 ./src/components/Plan.vue --dest ./dist/components && cp -R ./src/assets/scss ./dist/scss",
"build-app": "vue-cli-service build --dest dist-app",
"test:unit": "jest",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"@types/dragscroll": "0.0.0",
"@types/highlight.js": "^9.12.4",
"@types/lodash": "^4.14.178",
"@types/moment-duration-format": "^2.2.3",
"bootstrap": "^4.6.1",
"clarinet": "^0.12.3",
"core-js": "^3.21.0",
"highlight.js": "^10.7.2",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"popper.js": "^1.16.1",
"splitpanes": "^2.3.8",
"tippy.js": "^6.3.7",
"vue": "^2.6.14",
"vue-class-component": "^7.2.6",
"vue-clipboard3": "^1.0.1",
"vue-fragment": "^1.5.2",
"vue-property-decorator": "^8.5.1",
"vue-sorted-table": "^1.3.0",
"vue-tippy": "^4.13.0"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"@types/jest": "^25.1.2",
"@vue/cli-plugin-babel": "^4.0.5",
"@vue/cli-plugin-typescript": "^4.4.1",
"@vue/cli-service": "^4.0.5",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^6.26.3",
"husky": "^4.2.2",
"jest": "^25.3.0",
"lint-staged": "^10.0.7",
"moment-locales-webpack-plugin": "^1.1.0",
"node-sass": "^4.14.1",
"prettier": "2.0.5",
"raw-loader": "^4.0.2",
"sass-loader": "^8.0.0",
"snyk": "^1.334.0",
"ts-jest": "^25.2.0",
"typescript": "^4.6.2",
"vue-jest": "^3.0.5",
"vue-router": "^3.1.3",
"vue-template-compiler": "^2.6.14"
},
"gitHooks": {
"pre-commit": "lint-staged blah"
},
"lint-staged": {
"*.ts": [
"vue-cli-service lint"
],
"*.vue": [
"vue-cli-service lint"
],
"*.{js,css,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
},
"snyk": true
}