forked from tibetsprague/SEED
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.72 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.72 KB
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
{
"name": "seed",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"update-browserslist": "npx update-browserslist-db@latest",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --check ."
},
"dependencies": {
"@fontsource/inter": "^5.0.16",
"@fontsource/playfair-display": "^5.0.18",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@notionhq/client": "^3.1.3",
"@stripe/stripe-js": "^2.4.0",
"@supabase/supabase-js": "^2.39.3",
"axios": "^1.6.7",
"classnames": "^2.5.1",
"csv-parser": "^3.2.0",
"dotenv": "^17.0.0",
"framer-motion": "^11.18.2",
"lodash": "^4.17.21",
"next": "14.1.0",
"react": "^18",
"react-dom": "^18",
"react-query": "^3.39.3",
"react-select": "^5.10.1",
"stripe": "^14.14.0"
},
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.0.1",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^2.0.0",
"postcss": "^8",
"prettier": "^3.2.5",
"sass": "^1.71.0",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"engines": {
"node": ">=18.17.0",
"npm": ">=9.0.0"
}
}