forked from eidam/cf-workers-status-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 880 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
33
{
"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.mjs",
"format": "prettier --write '**/*.{js,css,json,md}'",
"css": "postcss public/tailwind.css -o public/style.css"
},
"dependencies": {
"flareact": "^1.5.0",
"laco": "^1.2.1",
"laco-react": "^1.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"node-fetch": "^3.2.2",
"autoprefixer": "^10.4.2",
"node-fetch": "^3.1.0",
"postcss": "^8.4.8",
"postcss-cli": "^9.1.0",
"tailwindcss": "^3.0.23",
"prettier": "^2.5.1",
"yaml-loader": "^0.6.0"
}
}