-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.8 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
{
"name": "solid-petstore",
"type": "module",
"version": "1.0.0",
"description": "A skeleton solidjs app for the petstore api.",
"keywords": [
"chubbyts",
"skleton",
"solid"
],
"author": "Dominik Zogg",
"license": "MIT",
"repository": "chubbyts/solid-petstore",
"scripts": {
"build": "tsc && vite build",
"cs-fix": "prettier --write src tests *.cjs *.js *.ts",
"cs": "prettier --check src tests *.cjs *.js *.ts",
"develop": "vite",
"lint-fix": "eslint src tests *.cjs *.js *.ts --fix",
"lint": "eslint src tests *.cjs *.js *.ts",
"start": "pnpm i && pnpm cs-fix && pnpm develop",
"test": "vitest"
},
"dependencies": {
"@chubbyts/chubbyts-throwable-to-error": "^1.2.1",
"@prettier/sync": "^0.5.2",
"@solidjs/router": "^0.13.5",
"cross-fetch": "^4.0.0",
"date-fns": "^3.6.0",
"qs": "^6.12.1",
"solid-js": "^1.8.17",
"zod": "^3.23.8"
},
"devDependencies": {
"@chubbyts/chubbyts-function-mock": "^1.4.1",
"@solidjs/testing-library": "^0.8.8",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.14.2",
"@types/qs": "^6.9.15",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitest/coverage-v8": "^1.6.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-solid": "^0.14.0",
"eslint-plugin-tailwindcss": "^3.17.3",
"jsdom": "^24.1.0",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vite-plugin-solid": "^2.10.2",
"vitest": "^1.5.0"
},
"engines": {
"node": ">=18"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all"
}
}