-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "nextjs13-mvp",
"version": "0.1.0",
"private": true,
"scripts": {
"add-docs": "node scripts/addDummyDocs.js",
"build": "next build",
"dev": "next dev",
"dev:sst": "sst dev",
"deploy:prod": "sst deploy --stage production",
"format-code": "npx prettier 'app/**/*.{js,ts,tsx,mdx,json}' --write",
"lint": "next lint",
"prod": "next dev && next start",
"server": "node server",
"start": "next start",
"tsc": "tsc --noEmit"
},
"dependencies": {
"@mdx-js/loader": "^2.3.0",
"@next/mdx": "15.1.2",
"@picocss/pico": "^1.5.10",
"@types/node": "18.16.3",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"eslint": "8.39.0",
"eslint-config-next": "15.1.2",
"next": "15.1.2",
"prettier": "^2.8.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"remark-prism": "^1.3.6",
"server-only": "^0.0.1",
"sst": "3.11.11",
"typescript": "^5.1.6"
},
"devDependencies": {
"aws-cdk-lib": "2.84.0",
"constructs": "10.1.156"
}
}