-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
41 lines (41 loc) · 1.19 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
{
"name": "putaindecode.io",
"private": true,
"version": "2.0.0",
"scripts": {
"build": "rescript build -with-deps",
"start": "rescript build -with-deps -w -ws 9999",
"clean": "rescript clean && rimraf build",
"format": "yarn format:most && yarn format:re",
"format:most": "prettier --write \"**/*.{js,json,css,md}\"",
"format:re": "find ./src -iname '*.re' | xargs -n 1 bsrefmt --in-place && find ./src -iname '*.rei' | xargs -n 1 bsrefmt -i true --in-place",
"server": "pages start src/App.mjs 3000",
"test": "rescript build -with-deps",
"prerender": "pages build src/App.mjs"
},
"authors": [
"bloodyowl <bloodyowl@icloud.com>",
"MoOx <m@moox.io>",
"jojmaht <jojmaht@gmail.com>",
"zoontek <zoontek@gmail.com>"
],
"license": "MIT",
"dependencies": {
"@emotion/css": "^11.1.3",
"@rescript/react": "^0.10.1",
"md5": "^2.3.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rescript": "^9.1.3",
"rescript-asyncdata": "^2.0.0",
"rescript-js": "^0.5.14",
"rescript-pages": "^3.0.4"
},
"devDependencies": {
"prettier": "^1.18.2"
},
"prettier": {
"trailingComma": "all",
"proseWrap": "always"
}
}