-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.21 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "app-template-rescript-react",
"version": "4.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jihchi/app-template-rescript-react.git"
},
"keywords": [
"csa-template",
"reason-react",
"rescript-react",
"reasonml",
"bucklescript",
"rescript",
"react"
],
"files": [
".gitignore",
"bsconfig.json",
"README.md",
"snowpack.config.js",
"web-test-runner.config.js",
"public/*",
"src/**/*.res",
"src/**/*.css",
"src/**/*.svg"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "snowpack build",
"clean": "rescript clean",
"start": "snowpack dev",
"test": "web-test-runner \"src/**/__tests__/*.bs.js\""
},
"dependencies": {
"@rescript/react": "^0.10.3",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@jihchi/plugin-rescript": "^1.0.0",
"@snowpack/plugin-dotenv": "^2.2.0",
"@snowpack/plugin-react-refresh": "^2.5.0",
"@snowpack/web-test-runner-plugin": "^0.2.2",
"@testing-library/react": "^12.1.2",
"@web/test-runner": "^0.13.27",
"chai": "^4.3.6",
"rescript": "^9.1.2",
"snowpack": "~3.0"
}
}