-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.36 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-boilerplate",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"deploy": "next start -p 3000",
"preview": "next start -p 3000",
"lint": "eslint ./ --ext .ts,.tsx",
"lint-fix": "eslint --fix ./ --ext .ts,.tsx",
"type-check": "tsc --noEmit --emitDeclarationOnly false"
},
"dependencies": {
"@svgr/webpack": "^7.0.0",
"chaya-ui": "1.0.0-beta.17",
"clsx": "^1.2.1",
"color": "^4.2.3",
"date-fns": "2.29.2",
"graphql-hooks": "^6.2.1",
"isomorphic-fetch": "3.0.0",
"nanoid": "3.3.4",
"next": "13.0.3",
"nprogress": "0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.0",
"sass": "^1.60.0",
"tailwindcss": "^3.2.7"
},
"devDependencies": {
"@svgr/webpack": "^6.5.1",
"@types/isomorphic-fetch": "^0.0.36",
"@types/node": "18.11.18",
"@types/nprogress": "^0.2.0",
"@types/papaparse": "^5.3.7",
"@types/react": "18.0.27",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"autoprefixer": "^10.4.0",
"eslint": "8.5.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "13.2.3",
"eslint-plugin-unused-imports": "^2.0.0",
"postcss": "8.4.5",
"typescript": "4.9.5"
}
}