-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.57 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
{
"name": "@uniformdev/optimize-uniform-sitecore-mvc-nextjs-starterkit",
"version": "7.3.241031-1",
"private": true,
"license": "SEE LICENSE IN PROVIDED DISTRIBUTION PACKAGE",
"scripts": {
"dev": "node ./server.js",
"start": "cross-env-shell \"npm run build && node ./server.js\"",
"export:deploy": "cross-env-shell NODE_ENV=production UNIFORM_BUILD_MODE=export \"npm run build\"",
"export:deploy-and-optimize": "cross-env-shell NODE_ENV=production UNIFORM_BUILD_MODE=export UNIFORM_OPTIONS_ESI=1 \"npm run build && npm run decode-esi\"",
"decode-esi": "node ./scripts/decode-esi.js ./out",
"build": "next build",
"format": "prettier --write \"./{components,pages}/**/*.{js,ts,tsx}\""
},
"dependencies": {
"@uniformdev/common": "7.3.241031-1",
"@uniformdev/common-client": "7.3.241031-1",
"@uniformdev/common-server": "7.3.241031-1",
"@uniformdev/esi-edge-cloudflare": "7.3.241031-1",
"@uniformdev/next": "7.3.241031-1",
"@uniformdev/next-server": "7.3.241031-1",
"@uniformdev/publishing-all": "7.3.241031-1",
"dotenv": "^8.2.0",
"next": "14.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"replace-in-file": "^6.2.0"
},
"overrides": {
"xml2js": "^0.5.0"
},
"resolutions": {
"xml2js": "^0.5.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"cross-env": "^7.0.3",
"del-cli": "^3.0.1",
"get-port": "^5.1.1",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=18.17.0",
"npm": ">=v8.11.0"
}
}