-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
32 lines (32 loc) · 938 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": "re-formality-examples",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "parcel src/index.html",
"prestart": "yarn run clean && yarn run res:build",
"build": "parcel build src/index.html",
"prebuild": "yarn run clean && yarn run res:build",
"clean": "yarn run dist:clean && yarn run res:clean",
"res:build": "rescript build -with-deps",
"res:watch": "rescript build -with-deps -w",
"res:clean": "rescript clean",
"dist:clean": "rm -rf dist",
"format": "rescript format -all",
"test": "exit 0",
"deploy": "now deploy dist --prod --name re-formality",
"predeploy": "yarn run build"
},
"dependencies": {
"@rescript/react": "0.11.0",
"re-formality": "*",
"react": "18.2.0",
"react-dom": "18.2.0",
"rescript-classnames": "6.0.0"
},
"devDependencies": {
"parcel": "2.8.3",
"process": "0.11.10",
"rescript": "10.1.3"
}
}