-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"title": "Bevry Billing",
"name": "bevry-billing",
"private": true,
"type": "module",
"version": "0.0.1",
"scripts": {
"build": "npx tailwindcss -c ./tailwind.config.cjs -i ./public/tailwind.css -o ./public/tailwind.min.css",
"prestart": "npm run build",
"start": "wrangler pages dev ./public",
"deploy": "wrangler pages publish ./public"
},
"dependencies": {
"daet": "^3.23.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"simplytyped": "^3.3.0",
"tailwindcss": "^3.2.7",
"webcrypt-session": "^0.5.1",
"zod": "^3.20.6"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230221.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"eslint": "^8.35.0",
"eslint-config-bevry": "^3.27.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"wrangler": "^2.12.0"
},
"eslintConfig": {
"extends": [
"bevry"
]
},
"prettier": {
"semi": false,
"singleQuote": true
}
}