-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.36 KB
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
{
"name": "100hunters",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "tsx watch --ignore ./vite.config.ts.*.mjs --env-file=.env ./server.ts",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "cross-env NODE_ENV=production tsx ./server.ts",
"typecheck": "tsc",
"format": "prettier . --write",
"storybook": "cross-env VITE_CJS_IGNORE_WARNING=true storybook dev -p 6006",
"build-storybook": "storybook build",
"db:gen-schema": "sh ./utils/mermaid/generate-schema.sh"
},
"dependencies": {
"@remix-run/express": "^2.8.0",
"@remix-run/node": "^2.8.0",
"@remix-run/react": "^2.8.0",
"clx": "^1.0.0",
"compression": "^1.7.4",
"express": "^4.18.2",
"invariant": "^2.2.4",
"isbot": "^4.1.0",
"morgan": "^1.10.0",
"mysql2": "^3.9.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@mermaid-js/mermaid-cli": "^10.8.0",
"@remix-run/dev": "^2.8.0",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/blocks": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/react-vite": "^7.6.17",
"@storybook/test": "^7.6.17",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.20",
"@types/invariant": "^2.2.37",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.24",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"autoprefixer": "^10.4.18",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"storybook": "^7.6.17",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.1",
"typescript": "^5.1.6",
"vite": "^5.1.0",
"vite-tsconfig-paths": "^4.2.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.9.6"
}
}