-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "@uniformdev/uniform-sitecore-jss-nextjs-starterkit",
"version": "7.3.241031-1",
"private": true,
"config": {
"appName": "uniform-sitecore-jss-kit",
"rootPlaceholders": [
"uniform-jss-kit-content"
],
"sitecoreConfigPath": "/App_Config/Include/zzz",
"language": "en",
"appLanguages": [
"en"
]
},
"scripts": {
"dev": "cross-env NODE_ENV=development npm run start-server",
"start": "cross-env-shell NODE_ENV=production \"npm run build && npm run start-server\"",
"export": "cross-env-shell NODE_ENV=production UNIFORM_BUILD_MODE=export \"npm run build\"",
"build": "next build",
"start-server": "node uniform.server.js"
},
"dependencies": {
"@sitecore-jss/sitecore-jss-react": "^21.0.1",
"@uniformdev/common": "7.3.241031-1",
"@uniformdev/next-jss": "7.3.241031-1",
"@uniformdev/next-jss-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"
},
"overrides": {
"xml2js": "^0.5.0"
},
"resolutions": {
"xml2js": "^0.5.0"
},
"devDependencies": {
"@babel/register": "^7.5.5",
"@babel/runtime": "^7.13.10",
"@sitecore-jss/sitecore-jss-cli": "^21.0.1",
"@sitecore-jss/sitecore-jss-dev-tools": "^21.0.1",
"cross-env": "^5.2.1",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=18.17.0",
"npm": ">=v8.11.0"
}
}