forked from aws-containers/hello-app-runner-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·32 lines (32 loc) · 794 Bytes
/
package.json
File metadata and controls
executable file
·32 lines (32 loc) · 794 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
31
32
{
"name": "hello-app-runner-nodejs",
"version": "0.1.0",
"private": true,
"license": "MIT-0",
"author": "Tori Hara (@toricls)",
"repository": "https://github.com/aws-containers/hello-app-runner-nodejs",
"scripts": {
"seed": "./seed/seed.sh",
"prebuild": "prettier '*/**/*.js' --write",
"dev": "next dev",
"build": "next build",
"start": "next start -p 80"
},
"dependencies": {
"aws-sdk": "^2.907.0",
"next": "^10.0.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"gray-matter": "^4.0.3",
"remark": "^13.0.0",
"remark-external-links": "^8.0.0",
"remark-html": "^13.0.1",
"remark-parse": "^9.0.0",
"swr": "^0.5.6",
"unified": "^9.2.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"prettier": "^2.3.0"
}
}