-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1007 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
35
36
37
38
{
"name": "snowpack-rescript-react",
"version": "0.0.2",
"keywords": [
"csa-template",
"snowpack",
"rescript",
"react"
],
"scripts": {
"postinstall": "bsb -make-world",
"start:re": "bsb -make-world -w",
"start:snowpack": "snowpack dev",
"start:tauri": "tauri dev",
"start": "run-p start:**",
"build:re": "bsb -clean-world -make-world",
"build:snowpack": "snowpack build",
"build:tauri": "tauri build",
"build": "run-s build:**",
"test": "echo \"This template does not include a test runner by default.\" && exit 1"
},
"resolutions": {
"react": "0.0.0-experimental-27659559e",
"react-dom": "0.0.0-experimental-27659559e"
},
"dependencies": {
"@rescript/react": "^0.10.1",
"bs-platform": "^8.4.2",
"react": "experimental",
"react-dom": "experimental",
"tauri": "^0.14.1"
},
"devDependencies": {
"@snowpack/plugin-react-refresh": "^2.4.0",
"npm-run-all": "^4.1.5",
"snowpack": "^3.0.1"
}
}