forked from kontent-ai/sample-app-next-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.73 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
{
"name": "@kontent-ai/sample-app-next-js",
"version": "1.0.0",
"scripts": {
"generateModels": "tsc --project scripts/tsconfig.json && node scripts/build/generateModels.mjs",
"dev": "next dev",
"lint": "next lint",
"lint:fix": "next lint --fix",
"build": "next build",
"export": "next export",
"start": "next start",
"https:dev": "concurrently --kill-others -n dev,proxy \"npm run dev -- --port 3000\" \"local-ssl-proxy --source 3001 --target 3000\"",
"https:proxy": "local-ssl-proxy --source 3001 --target 3000",
"test": "jest"
},
"dependencies": {
"@heroicons/react": "^2.0.17",
"@kontent-ai/delivery-sdk": "^14.0.1",
"@kontent-ai/rich-text-resolver": "^0.0.4",
"@kontent-ai/smart-link": "^3.0.0",
"@portabletext/react": "^2.0.2",
"@vercel/analytics": "^1.0.0",
"auth0-js": "^9.22.1",
"cookies-next": "^4.0.0",
"next": "^13.5.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"swiper": "^10.2.0"
},
"devDependencies": {
"@kontent-ai/eslint-config": "^0.1.3",
"@kontent-ai/management-sdk": "^5.0.0",
"@kontent-ai/model-generator": "6.5.0",
"@netlify/plugin-nextjs": "^4.40.1",
"@portabletext/types": "^2.0.6",
"@tailwindcss/typography": "^0.5.9",
"@types/auth0-js": "^9.21.0",
"@types/jest": "^29.5.3",
"@types/node": "^18.11.8",
"@types/react": "^18.0.24",
"autoprefixer": "^10.4.14",
"babel-jest": "^29.6.2",
"concurrently": "^8.2.1",
"dotenv": "^16.0.3",
"eslint": "^8.26.0",
"eslint-config-next": "^13.0.0",
"jest": "^29.6.2",
"local-ssl-proxy": "^2.0.5",
"postcss": "^8.4.22",
"rimraf": "^5.0.0",
"tailwindcss": "^3.3.1",
"ts-jest": "^29.1.1",
"typescript": "5.0.4"
}
}