-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "nextjs-express-full-stack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "next build && tsc --project tsconfig.server.json",
"dev": "nodemon",
"postinstall": "install-types",
"start": "NODE_ENV=production node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-boilerplates/nextjs-express-full-stack.git"
},
"keywords": [],
"author": "Dhruv Jain (https://maddhruv.github.io)",
"license": "ISC",
"bugs": {
"url": "https://github.com/the-boilerplates/nextjs-express-full-stack/issues"
},
"homepage": "https://github.com/the-boilerplates/nextjs-express-full-stack#readme",
"dependencies": {
"express": "^4.17.1",
"next": "^9.4.4",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/node": "^14.0.14",
"@types/nodemon": "^1.19.0",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"install-types": "^2.0.1",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}