forked from manifoldmarkets/manifold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.65 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "web",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "next dev -p 3000",
"ts-watch": "tsc --watch --noEmit --incremental --preserveWatchOutput --pretty",
"dev": "concurrently -n NEXT,TS -c magenta,cyan \"yarn serve\" \"yarn ts-watch\"",
"dev:dev": "cross-env NEXT_PUBLIC_FIREBASE_ENV=DEV yarn dev",
"dev:prod": "cross-env NEXT_PUBLIC_FIREBASE_ENV=PROD yarn dev",
"dev:local": "cross-env NEXT_PUBLIC_FUNCTIONS_URL=http://localhost:8080 yarn devdev",
"devdev": "yarn dev:dev",
"prod": "yarn dev:prod",
"disk-space-info": "du -hs ./node_modules && du -hs ./.next && du -hs ./.next/cache",
"clear-nextjs-cache": "rm -rf ./.next/cache",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint-fix": "next lint --fix",
"format": "npx prettier --write .",
"format-changed": "cd .. && git diff $(git merge-base --fork-point main) --name-only --diff-filter=d | xargs npx prettier -w",
"verify": "(cd .. && yarn verify)",
"verify:dir": "npx prettier --check .; yarn lint --max-warnings 0; tsc --pretty --project tsconfig.json --noEmit"
},
"dependencies": {
"@amplitude/analytics-browser": "1.9.4",
"@floating-ui/react": "0.19.0",
"@google-cloud/secret-manager": "4.2.1",
"@headlessui/react": "1.7.11",
"@hello-pangea/dnd": "16.3.0",
"@heroicons/react": "1.0.6",
"@popperjs/core": "^2.0.0",
"@radix-ui/react-hover-card": "1.0.7",
"@radix-ui/react-slider": "1.1.2",
"@react-spring/web": "9.7.1",
"@tiptap/core": "2.0.0-beta.204",
"@tiptap/extension-character-count": "2.0.0-beta.204",
"@tiptap/extension-image": "2.0.0-beta.204",
"@tiptap/extension-link": "2.0.0-beta.204",
"@tiptap/extension-mention": "2.0.0-beta.204",
"@tiptap/extension-placeholder": "2.0.0-beta.204",
"@tiptap/react": "2.0.0-beta.204",
"@tiptap/starter-kit": "2.0.0-beta.204",
"@tiptap/suggestion": "2.0.0-beta.204",
"@vercel/og": "0.5.20",
"clsx": "1.1.1",
"compressorjs": "1.1.1",
"cors": "2.8.5",
"country-list": "2.3.0",
"csstype": "^3.0.10",
"d3-array": "3.2.0",
"d3-axis": "3.0.0",
"d3-scale": "4.0.2",
"d3-selection": "3.0.0",
"d3-shape": "3.1.0",
"d3-zoom": "3.0.0",
"dayjs": "1.11.4",
"firebase": "9.19.1",
"link-preview-js": "3.0.4",
"nanoid": "^3.3.4",
"next": "14.1.0",
"prosemirror-state": "1.4.2",
"punycode": "2.3.1",
"react": "18.2.0",
"react-color": "2.19.3",
"react-confetti": "6.1.0",
"react-dom": "18.2.0",
"react-expanding-textarea": "2.3.6",
"react-hot-toast": "2.4.1",
"react-icons": "4.11.0",
"react-international-phone": "4.2.6",
"react-masonry-css": "1.0.16",
"react-popper": "2.3.0",
"react-twitter-embed": "4.0.4",
"string-similarity": "4.0.4",
"tippy.js": "6.3.7"
},
"devDependencies": {
"@svgr/webpack": "8.1.0",
"@tailwindcss/container-queries": "0.1.1",
"@tailwindcss/forms": "0.4.0",
"@tailwindcss/typography": "^0.5.1",
"@types/cors": "2.8.17",
"@types/country-list": "2.1.4",
"@types/d3": "7.4.0",
"@types/react": "18.0.25",
"@types/react-color": "3.0.11",
"@types/react-dom": "18.0.9",
"@types/string-similarity": "4.0.0",
"autoprefixer": "10.2.6",
"concurrently": "8.2.2",
"cross-env": "7.0.3",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "9.0.0",
"next-sitemap": "^2.5.14",
"postcss": "8.4.31",
"prettier-plugin-sql": "0.14.0",
"prettier-plugin-tailwindcss": "^0.2.1",
"tailwindcss": "3.3.3",
"tsc-files": "1.1.3"
},
"lint-staged": {
"*.{ts,tsx}": "tsc-files --noEmit --incremental false"
}
}