forked from ryyppy/rescript-nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 931 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
34
{
"name": "rescript-nextjs-template",
"version": "1.0.0",
"author": "Patrick Ecker <ryyppy@users.noreply.github.com>",
"license": "Apache-2.0",
"dependencies": {
"next": "10.2.3",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"repository": "https://github.com/ryyppy/rescript-nextjs-template",
"scripts": {
"dev": "next",
"debug": "NODE_OPTIONS='--inspect' next",
"build": "rescript && next build",
"now-build": "rescript && next build",
"export": "next export",
"start": "next start -p $PORT",
"res:build": "rescript",
"res:clean": "rescript clean",
"res:start": "rescript build -w"
},
"devDependencies": {
"next-transpile-modules": "7.1.2",
"@rescript/react": "0.10.3",
"gentype": "4.1",
"autoprefixer": "10.1.0",
"rescript": "9.1",
"cssnano": "5.0.5",
"postcss": "8.2.15",
"postcss-cli": "8.3.1",
"tailwindcss": "2.0.4"
}
}