-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.58 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": "rescript-project-template",
"version": "0.0.1",
"scripts": {
"build:bundle": "node ./.esbuild/production.mjs",
"build:rescript": "rescript",
"build:tailwind": "tailwindcss -i ./src/app.css -o ./public/css/app.css",
"build": "run-s build:rescript build:bundle build:tailwind",
"clean": "rescript clean -with-deps",
"dev": "run-s clean && run-p dev:*",
"dev:rescript": "rescript build -w",
"dev:tailwind": "tailwindcss -i ./src/app.css -o ./public/css/app.css --watch",
"__": "NODE_OPTIONS='--trace-warnings'",
"dev:server": "node-dev --respawn ./.devserver/bin.mjs",
"format": "prettier --write .devserver/**/*.mjs"
},
"keywords": [
"rescript"
],
"author": "cdaringe",
"license": "MIT",
"dependencies": {
"@rescriptbr/react-query": "0.0.2",
"@tinymce/tinymce-react": "4.2.0",
"bs-platform": "9.0.2",
"decco": "^1.6.0",
"insane": "2.6.2",
"marked": "4.0.18",
"monaco-editor": "0.34.0",
"react-query": "3.39.2",
"reason-promise": "1.1.5",
"remark": "14.0.2",
"remark-gfm": "3.0.1",
"rescript": "*",
"rescript-classnames": "6.0.0",
"rescript-tinymce-react": "1.0.5"
},
"devDependencies": {
"@rescript/react": "0.10.3",
"bs-fetch": "0.6.2",
"esbuild": "0.14.48",
"express": "4.18.1",
"fs-extra": "10.1.0",
"http-proxy-middleware": "2.0.6",
"node-dev": "7.4.3",
"npm-run-all": "4.1.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"rescript-webapi": "0.6.1",
"serve-static": "1.15.0",
"tailwindcss": "3.1.4",
"tinymce": "6.1.2"
}
}