forked from dalibo/pev2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.26 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
{
"name": "pev2",
"version": "1.5.0",
"homepage": "https://github.com/dalibo/pev2",
"license": "PostgreSQL license",
"files": [
"dist"
],
"main": "./dist/pev2.umd.js",
"module": "./dist/pev2.mjs",
"exports": {
".": {
"import": "./dist/pev2.mjs",
"require": "./dist/pev2.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"build-lib": "vue-tsc --noEmit && LIB=true vite build",
"preview": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/vue-fontawesome": "^3.0.0-5",
"@types/d3": "^7.4.0",
"@types/lodash": "^4.14.185",
"bootstrap": "^4.6.2",
"clarinet": "^0.12.5",
"d3": "^7.6.1",
"d3-flextree": "^2.1.2",
"emitter": "^0.0.2",
"highlight.js": "^11.5.0",
"humanize-duration": "^3.27.3",
"lodash": "^4.17.21",
"sass": "^1.55.0",
"splitpanes": "^3.1.1",
"vue": "^3.2.39",
"vue-clipboard3": "^2.0.0",
"vue-tippy": "^6.0.0-alpha.57"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@types/humanize-duration": "^3.27.1",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.26",
"@types/splitpanes": "^2.2.1",
"@vitejs/plugin-vue": "^3.0.1",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^8.5.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.4.0",
"prettier": "^2.5.1",
"stream": "^0.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "~4.5.5",
"vite": "^3.0.5",
"vite-plugin-singlefile": "^0.11.0",
"vue-tsc": "^0.31.4"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}