-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.62 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
55
56
57
58
59
60
61
62
63
64
{
"name": "eventflare",
"version": "2.1.1",
"private": true,
"author": "CS-5",
"license": "MIT",
"browser": {
"fs": false
},
"scripts": {
"dev": "npm run wrangler:dev",
"build": "npm run next:build && npm run next:export",
"next:dev": "next dev",
"next:build": "next build",
"next:export": "next export",
"next:start": "next start",
"next:lint": "next lint",
"wrangler:dev": "wrangler pages dev --kv EF_RSVP_RESPONSES -- npm run next:dev"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.3.1",
"@types/react": "^17.0.38",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"autoprefixer": "^10.4.2",
"eslint": "8.7.0",
"eslint-config-next": "12.0.9",
"eslint-config-prettier": "^8.3.0",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.17",
"tailwindcss-textshadow": "^2.1.3",
"typescript": "4.5.5"
},
"dependencies": {
"@eventflare/lib": "file:../lib",
"@notionhq/client": "^0.4.13",
"@react-google-maps/api": "^2.7.0",
"@tailwindcss/forms": "^0.4.0",
"csv-writer": "^1.6.0",
"next": "12.0.9",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.25.1",
"react-query": "^3.34.12",
"uuid": "^8.3.2"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"next/core-web-vitals",
"prettier"
],
"rules": {
"@next/next/no-img-element": "off"
}
}
}