-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 754 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 754 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
{
"name": "next-express-typescript-2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node --project tsconfig.server.json server/index.ts",
"build:server": "tsc --project tsconfig.server.json",
"build:next": "next build",
"build": "npm run build:next && npm run build:server",
"start": "NODE_ENV=production node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"next": "^9.2.1",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/node": "^13.7.1",
"@types/react": "^16.9.19",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}