-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.05 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
{
"name": "parisjs",
"version": "1.0.0",
"description": "Paris.JS website",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "rescript build -with-deps",
"start": "rescript build -with-deps -w -ws 9999",
"clean": "rescript clean",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "gh-pages -d dist",
"server": "pages start src/App.mjs 3000",
"prerender": "pages build src/App.mjs",
"release": "rm -fr dist && yarn build && yarn prerender && yarn deploy",
"format": "find ./src -iname '*.re' | xargs bsrefmt --in-place && find ./src -iname '*.rei' | xargs bsrefmt -i true --in-place"
},
"dependencies": {
"@emotion/css": "11.0.0",
"@emotion/server": "11.0.0",
"@rescript/core": "^1.3.0",
"@rescript/react": "^0.12.0",
"gh-pages": "^2.0.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rescript-pages": "^4.0.0"
},
"devDependencies": {
"rescript": "^11.0.0"
},
"resolutions": {
"**/@emotion/css": "11.0.0",
"**/@emotion/server": "11.0.0"
}
}