-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "rescript-react-starter-kit",
"version": "0.7.2",
"description": "A starter kit for ReScript React applications",
"main": "src/App.bs.js",
"repository": "[email protected]:bloodyowl/rescript-react-starter-kit.git",
"author": "bloodyowl <[email protected]>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"start": "rescript build -with-deps -w -ws 9999",
"build": "rescript",
"bundle": "webpack",
"server": "node server/server.mjs",
"clean": "rescript clean",
"test": "retest --with-dom test/*_test.mjs"
},
"devDependencies": {
"chalk": "^4.1.0",
"copy-webpack-plugin": "^7.0.0",
"etag": "^1.8.1",
"express": "^4.17.1",
"html-webpack-plugin": "^5.2.0",
"mime": "^2.5.2",
"rescript": "^9.1.4",
"rescript-devserver-tools": "^1.0.9",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"@emotion/css": "^11.1.3",
"@rescript/react": "^0.10.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"rescript-asyncdata": "^2.0.0",
"rescript-future": "^2.0.0",
"rescript-js": "^0.5.6",
"rescript-request": "^3.0.1",
"rescript-test": "^3.0.0"
}
}