-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 931 Bytes
/
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
{
"name": "nextjs-with-aws-serverless",
"version": "1.0.0",
"description": "next.js with aws serverless deployment.",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"deploy": "serverless",
"lint": "tslint -c tslint.json -p tsconfig.json",
"lint-fix": "tslint -c tslint.json -p tsconfig.json --fix"
},
"keywords": [
"next.js",
"react.js",
"react",
"serverless",
"aws"
],
"author": "kimcoder",
"license": "ISC",
"dependencies": {
"next": "9.4.0",
"next-images": "1.4.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"typescript": "3.8.3"
},
"devDependencies": {
"@types/node": "13.13.5",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"serverless-next.js": "1.12.0-alpha.5",
"tslint": "6.1.2",
"tslint-config-standard": "9.0.0",
"tslint-react": "5.0.0"
}
}