forked from jasonwaters/target-nodejs-sdk-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 739 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 739 Bytes
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
{
"name": "target-nodejs-ssr-sample",
"version": "1.0.0",
"description": "Adobe Target NodeJS SDK SSR sample",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start -p 4445",
"start-prod": "next build && next start -p $PORT"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git@github.com:adobe/target-nodejs-sdk-samples.git"
},
"author": "Adobe Systems Inc.",
"license": "Apache-2.0",
"browser": {
"@adobe/target-nodejs-sdk": false
},
"dependencies": {
"@adobe/target-nodejs-sdk": "^1.0.3",
"isomorphic-unfetch": "^3.0.0",
"next": "^9.0.0",
"nookies": "^2.0.8",
"react": "^16.8.4",
"react-dom": "^16.8.4"
}
}