-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.34 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
{
"private": true,
"name": "prtcl.cc",
"version": "0.0.0",
"description": "Code for prtcl.cc",
"repository": {
"type": "git",
"url": "https://github.com/prtcl/prtcl.cc.git"
},
"author": "Cory O'Brien <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "vite build --mode=production",
"clean": "rm -rf node_modules | true && rm -r dist | true",
"deploy": "convex deploy --cmd 'npm run build'",
"dev": "concurrently \"convex dev\" \"vite dev --mode=development --host\"",
"generate-screenshots": "npx tsx scripts/generate-screenshots.ts",
"import-screenshots": "npx tsx scripts/import-screenshots.ts",
"lint": "eslint src convex",
"panda": "panda codegen --clean",
"prettier": "prettier src --write",
"preview": "npm run build && concurrently \"convex dev\" \"vite preview\"",
"setup": "npm ci && npm run panda",
"typecheck": "tsc --noEmit --pretty --skipLibCheck",
"upload-image": "npx tsx scripts/upload-image.ts"
},
"dependencies": {
"@prtcl/plonk": "^1.0.1",
"@prtcl/plonk-hooks": "^1.0.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-hover-card": "^1.1.2",
"@react-spring/web": "^9.7.5",
"convex": "^1.17.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-markdown": "^9.0.1",
"react-use": "^17.5.1"
},
"devDependencies": {
"@pandacss/dev": "^0.39.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.12.11",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vitejs/plugin-react": "^4.3.3",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"image-size": "^1.1.1",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"postcss-preset-env": "^9.5.11",
"prettier": "^3.2.5",
"tsx": "^4.19.2",
"typescript": "^5.4.5",
"vite": "^5.4.10",
"vite-plugin-html": "^3.2.2",
"vite-tsconfig-paths": "^5.1.0",
"yargs": "^17.7.2"
}
}