-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.88 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
{
"name": "@jaap3/stitch-slice",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint:prettier": "prettier . --check",
"lint:eslint": "eslint . --ext .ts,.vue",
"lint:css": "stylelint '**/*.vue'",
"lint": "npm run lint:prettier && npm run lint:css && npm run lint:eslint",
"lintfix:prettier": "npm run lint:prettier -- --write --cache",
"lintfix:eslint": "npm run lint:eslint -- --cache --fix",
"lintfix:css": "npm run lint:css -- --cache --fix",
"lintfix": "npm run lintfix:prettier && npm run lintfix:css && npm run lintfix:eslint",
"test": "jest --coverage"
},
"dependencies": {
"@fontsource/manrope": "~5.1.0",
"adler-32": "~1.3.1",
"material-icons": "~1.13.1",
"pinia": "^2.0.34",
"randomuuid": "~1.0.1",
"sanitize.css": "~13.0.0",
"vue": "~3.5.10",
"vue-github-button": "~3.1.0",
"vuedraggable": "~4.1.0",
"wavefile": "~11.0.0"
},
"devDependencies": {
"@tsconfig/strictest": "~2.0.0",
"@types/ejs": "~3.1.1",
"@types/jest": "~28.1.6",
"@typescript-eslint/eslint-plugin": "~7.8.0",
"@typescript-eslint/parser": "~7.8.0",
"@vitejs/plugin-vue": "~5.1.2",
"ejs": "~3.1.8",
"eslint": "~8.57.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-jsdoc": "~50.3.0",
"eslint-plugin-prettier": "~5.2.1",
"eslint-plugin-simple-import-sort": "~12.1.0",
"eslint-plugin-vue": "~9.30.0",
"jest": "~28.1.3",
"prettier": "~3.3.3",
"stylelint": "^16.2.1",
"stylelint-config-recess-order": "~5.0.0",
"stylelint-config-standard-vue": "~1.0.0",
"terser": "~5.36.0",
"ts-jest": "~28.0.7",
"ts-node": "~10.9.1",
"ts-node-dev": "~2.0.0",
"typescript": "^5.0.4",
"vite": "~5.4.0",
"vue-tsc": "~2.1.6"
},
"license": "ISC"
}