forked from eidam/cf-workers-status-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 840 Bytes
/
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
{
"name": "cf-workers-status-page",
"version": "1.0.0",
"author": "Adam Janiš <[email protected]>",
"license": "MIT",
"main": "index.js",
"private": true,
"scripts": {
"dev": "flareact dev",
"build": "yarn css && flareact build",
"deploy": "yarn build && flareact publish",
"kv-gc": "node ./src/cli/gcMonitors.js",
"format": "prettier --write '**/*.{js,css,json,md}'",
"css": "postcss public/tailwind.css -o public/style.css"
},
"dependencies": {
"flareact": "0.10.0",
"laco": "1.2.1",
"laco-react": "1.1.0",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"autoprefixer": "10.0.2",
"node-fetch": "2.6.7",
"postcss": "8.2.13",
"postcss-cli": "8.3.1",
"prettier": "2.2.0",
"tailwindcss": "2.0.1",
"yaml-loader": "0.6.0"
}
}