forked from dalibo/pev2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.14 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
{
"name": "pev2",
"version": "1.1.1",
"homepage": "https://github.com/dalibo/pev2",
"license": "PostgreSQL license",
"files": [
"dist"
],
"main": "./dist/pev.umd.js",
"module": "./dist/pev.umd.js",
"exports": {
".": {
"import": "./dist/pev2.es.js",
"require": "./dist/pev2.umd.js"
}
},
"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.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/vue-fontawesome": "^3.0.0-5",
"@types/lodash": "^4.14.180",
"bootstrap": "^4.6.1",
"clarinet": "^0.12.5",
"highlight.js": "^11.5.0",
"humanize-duration": "^3.27.1",
"lodash": "^4.17.21",
"mitt": "^3.0.0",
"sass": "^1.49.9",
"splitpanes": "^3.1.0",
"stream": "^0.0.2",
"vue": "^3.2.31",
"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": "^2.2.2",
"@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",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "~4.5.5",
"vite": "^2.8.4",
"vite-plugin-singlefile": "^0.7.1",
"vue-tsc": "^0.31.4"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}