-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.61 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
56
57
{
"name": "theme-nextjs-starter",
"version": "0.1.0",
"engines": {
"node": "18.x",
"npm": "9.x"
},
"devEngines": {
"node": "18.x",
"npm": "9.x"
},
"scripts": {
"dev": "next",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --check './**/*.(js|ts|tsx|css)'",
"prettier:fix": "npm run prettier -- --write --no-list-different",
"typecheck": "tsc --noEmit --incremental",
"check": "npm run lint && npm run typecheck",
"test": "npx playwright test"
},
"dependencies": {
"@playwright/test": "^1.33.0",
"@prezly/content-renderer-react-js": "0.34.1",
"@prezly/sdk": "^18.3.0",
"@prezly/story-content-format": "0.64.0",
"@prezly/theme-kit-core": "7.2.0",
"@prezly/theme-kit-intl": "7.2.0",
"@prezly/theme-kit-nextjs": "7.2.0",
"@prezly/uploadcare": "2.5.0",
"@prezly/uploadcare-image": "0.3.2",
"@react-hookz/web": "14.7.1",
"algoliasearch": "4.24.0",
"next": "13.5.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-instantsearch-dom": "6.40.4",
"react-intl": "6.8.7"
},
"devDependencies": {
"@next/bundle-analyzer": "13.5.7",
"@prezly/eslint-config": "5.2.0",
"@types/node": "16.18.119",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-instantsearch-core": "6.26.10",
"@types/react-instantsearch-dom": "6.12.8",
"dotenv": "^16.0.3",
"next-logger": "3.0.2",
"prettier": "2.8.8",
"stylelint": "15.11.0",
"typescript": "5.3.3"
},
"license": "MIT"
}