-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.41 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
{
"name": "nextjs-typescript-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc",
"lint": "eslint --ext .ts,.tsx --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .ts,.tsx --ignore-path .gitignore ."
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fleekhq/fleek-storage-js": "^1.0.24",
"@onflow/fcl": "^1.9.0",
"@onflow/types": "^1.2.1",
"axios": "^1.6.2",
"formik": "^2.4.5",
"framer-motion": "^10.16.16",
"i18next": "^23.7.11",
"next": "^14.0.4",
"next-i18next": "^15.1.1",
"nft.storage": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.5.0",
"react-icons": "^4.12.0",
"react-image": "^4.1.0",
"react-spinners": "^0.13.8",
"webhook-discord": "^3.7.8"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@typescript-eslint/typescript-estree": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
}
}