forked from jacobparis/underkill-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "underkill-stack",
"version": "1.0.0",
"description": "A minimal react-router stack",
"main": "index.js",
"type": "module",
"imports": {
"#*": "./*"
},
"scripts": {
"dev": "react-router dev",
"build": "react-router build",
"start": "NODE_ENV=production react-router-serve ./build/server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacobparis/underkill-stack.git"
},
"keywords": [
"remix"
],
"author": "Jacob Paris",
"license": "ISC",
"bugs": {
"url": "https://github.com/jacobparis/underkill-stack/issues"
},
"homepage": "https://github.com/jacobparis/underkill-stack#readme",
"dependencies": {
"@react-router/node": "^7.0.2",
"@react-router/serve": "^7.0.2",
"@tailwindcss/vite": "^4.0.0-beta.6",
"isbot": "^5.1.17",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.0.2"
},
"devDependencies": {
"@react-router/dev": "^7.0.2",
"@total-typescript/tsconfig": "^1.0.4",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"npm-run-all": "^4.1.5",
"tailwindcss": "^4.0.0-beta.6",
"typescript": "^5.7.2",
"vite": "^5.4.11"
}
}