forked from gothinkster/realworld-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
62 lines (62 loc) · 1.43 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
55
56
57
58
59
60
61
62
{
"name": "rescript-react-realworld-example-app",
"version": "1.0.0",
"keywords": [
"ReasonML",
"BuckleScript",
"reason-react",
"ReScript",
"rescript-react",
"react"
],
"license": "MIT",
"author": "Jihchi Lee <[email protected]>",
"scripts": {
"build": "vite build",
"clean": "rescript clean",
"format": "npm run format:js && npm run format:res",
"format:js": "prettier --write \"**/*.{js,json,md,yml}\"",
"format:res": "rescript format -all",
"serve": "vite preview",
"start": "vite",
"test": "echo \"Error: no test specified\" && exit 1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"@glennsl/rescript-fetch": "^0.2.0",
"@rescript/core": "^0.5.0",
"@rescript/react": "^0.11.0",
"dompurify": "^3.0.5",
"marked": "^9.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rescript-webapi": "^0.9.0"
},
"devDependencies": {
"@jihchi/vite-plugin-rescript": "^5.3.0",
"@vitejs/plugin-react": "^4.1.0",
"prettier": "^3.0.3",
"rescript": "11.0.0-alpha.6",
"vite": "^4.4.9"
},
"packageManager": "[email protected]",
"engines": {
"node": "^18",
"pnpm": "^8"
}
}