-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 828 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 828 Bytes
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
{
"name": "{{PROJECT_NAME}}",
"type": "module",
"version": "0.1.0",
"private": true,
"description": "A Runtime Accelerated Rendering Infrastructure (rari) application",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"build": "rari build",
"dev": "rari dev",
"start": "rari start",
"deploy:railway": "rari deploy railway",
"deploy:render": "rari deploy render",
"clean": "rm -rf dist",
"typecheck": "tsgo"
},
"dependencies": {
"rari": "latest",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.1",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "^7.0.0-dev.20260317.1",
"tailwindcss": "^4.2.1",
"vite": "^8.0.0"
}
}