-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 988 Bytes
/
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
{
"name": "next-js-intro",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"lint": "next lint",
"test:e2e": "yarn playwright test",
"test:e2e:skip-build": "SKIP_BUILD=1 yarn test:e2e"
},
"dependencies": {
"airtable": "^0.11.1",
"autoprefixer": "^10.2.4",
"body-scroll-lock": "^4.0.0-beta.0",
"he": "^1.2.0",
"next": "^14.2.21",
"next-images": "^1.8.4",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-markdown": "^7.1.1",
"react-modal": "^3.12.1",
"remark-supersub": "^1.0.0",
"sass": "^1.33.0",
"tailwindcss": "^3.0.0"
},
"cacheDirectories": [
".next/cache"
],
"devDependencies": {
"@next/eslint-plugin-next": "^12.0.4",
"@playwright/test": "^1.43.1",
"@types/node": "^20.12.7",
"eslint": "^7.0",
"eslint-config-next": "^12.0.4",
"typescript": "^4.5.4",
"vercel": "^23.1.2"
}
}