-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 846 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
{
"name": "nrr",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"yarn relay:watch\" \"yarn res:dev\" \"next dev\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"res:dev": "rescript build -w",
"res:build": "rescript build",
"res:clean": "rescript clean -with-deps",
"relay": "rescript-relay-compiler",
"relay:watch": "rescript-relay-compiler --watch"
},
"dependencies": {
"@rescript/react": "^0.10.3",
"bs-fetch": "^0.6.2",
"concurrently": "^7.3.0",
"next": "12.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-relay": "13.2.0",
"relay-runtime": "13.2.0",
"rescript-relay": "1.0.0-beta.21"
},
"devDependencies": {
"eslint": "8.20.0",
"eslint-config-next": "12.2.3",
"rescript": "^9.1.4"
}
}