-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1 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
{
"name": "nextxp-template",
"version": "1.0.2",
"license": "Apache-2.0",
"private": true,
"scripts": {
"dev": "npm run server-build && cross-env NODE_ENV=development node dist/server/server.js",
"start": "cross-env NODE_ENV=production node dist/server/server.js",
"prod": "npm run build && npm run start",
"build": "npm run client-build && npm run server-build",
"client-build": "npx next build",
"server-build": "tsc --build ./server/tsconfig.json",
"lint": "npx next lint"
},
"dependencies": {
"@enonic/nextjs-adapter": "^1.0.2",
"cross-env": "^7.0.3",
"html-react-parser": "^3.0.15",
"next": "^13.2.4",
"next-transpile-modules": "^10.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"unescape": "^1.0.1"
},
"devDependencies": {
"@types/node": "^18.15.5",
"@types/react": "18.0.31",
"@types/react-dom": "^18.0.11",
"eslint": "8.37.0",
"eslint-config-next": "13.2.4",
"prettier": "^2.8.7",
"typescript": "5.0.2"
}
}