-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.75 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
{
"type": "module",
"name": "@phi-ag/rvt-app",
"version": "0.6.9",
"description": "Display Revit file information in the browser",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/phi-ag/rvt-app.git"
},
"scripts": {
"dev": "vinxi dev --no-clear",
"build": "vinxi build",
"start": "wrangler pages dev",
"start:e2e": "wrangler pages dev --ip=0.0.0.0 --log-level=warn",
"typecheck": "tsc --noEmit",
"lint": "eslint --max-warnings 0 .",
"test": "vitest --run",
"test:dev": "vitest",
"test:coverage": "vitest --run --coverage",
"test:e2e": "playwright test",
"test:e2e:dev": "PWTEST_WATCH=1 playwright test",
"bench": "pnpm vitest bench --run",
"typegen": "wrangler types --experimental-include-runtime=src/worker.d.ts src/env.d.ts",
"deploy": "wrangler pages deploy --branch main",
"deploy:production": "wrangler pages deploy --branch production",
"tail": "wrangler pages deployment tail --project-name rvt-app --environment preview",
"tail:production": "wrangler pages deployment tail --project-name rvt-app",
"format": "prettier --write \"**/*.{js,ts,tsx,json,css,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{js,ts,tsx,json,css,yml,yaml}\"",
"check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test",
"generate-pwa-assets": "pwa-assets-generator"
},
"dependencies": {
"@fontsource/roboto": "5.1.1",
"@solidjs/router": "0.15.3",
"@solidjs/start": "1.0.11",
"class-variance-authority": "0.7.1",
"lodash-es": "4.17.21",
"solid-js": "1.9.4",
"uuid": "11.0.5"
},
"devDependencies": {
"@eslint/js": "9.19.0",
"@playwright/test": "1.50.1",
"@tailwindcss/vite": "4.0.4",
"@testing-library/jest-dom": "6.6.3",
"@trivago/prettier-plugin-sort-imports": "5.2.2",
"@types/eslint-plugin-jsx-a11y": "6.10.0",
"@types/eslint__js": "8.42.3",
"@types/lodash-es": "4.17.12",
"@types/node": "22.13.1",
"@vite-pwa/assets-generator": "0.2.6",
"@vitest/coverage-v8": "3.0.5",
"eslint": "9.19.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-solid": "0.14.5",
"globals": "15.14.0",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.11",
"tailwindcss": "4.0.4",
"typescript": "5.7.3",
"typescript-eslint": "8.23.0",
"vinxi": "0.5.2",
"vite": "6.1.0",
"vite-plugin-solid": "2.11.1",
"vitest": "3.0.5",
"wrangler": "3.107.3"
},
"pnpm": {
"overrides": {
"vinxi": "$vinxi"
}
},
"engines": {
"node": "23.7.0"
},
"packageManager": "[email protected]+sha512.398035c7bd696d0ba0b10a688ed558285329d27ea994804a52bad9167d8e3a72bcb993f9699585d3ca25779ac64949ef422757a6c31102c12ab932e5cbe5cc92"
}