-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 849 Bytes
/
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
{
"name": "next-app-rescript",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next --turbo",
"build": "next build",
"clean": "rm -rf .next",
"start": "next start",
"lint": "next lint",
"res:build": "rescript",
"res:clean": "rescript clean",
"res:dev": "rescript -w",
"biome:check": "biome check --reporter=summary .",
"biome:fix": "biome check --write .",
"biome:unsafe": "biome check --write --unsafe ."
},
"dependencies": {
"@rescript/core": "1.5.2",
"@rescript/react": "0.13.0",
"next": "14.2.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"rescript": "11.1.3"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"postcss": "8.4.41",
"tailwindcss": "3.4.10"
},
"trustedDependencies": ["@biomejs/biome", "rescript"]
}