-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.05 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.05 KB
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
{
"name": "react-next-base",
"version": "1.0.0",
"description": "a react + next.js template",
"main": "backend/server.ts",
"scripts": {
"run:backend": "node backend/server.js",
"dev": "cross-env NODE_ENV=development ts-node-dev --ignore-watch .next --ignore-watch node_modules -P tsconfig.server.json --cls backend/server.ts",
"build": "cross-env NODE_ENV=production next build",
"start": "next start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iraizo/react-next-template.git"
},
"author": "iraizo",
"license": "MIT",
"bugs": {
"url": "https://github.com/iraizo/react-next-template/issues"
},
"homepage": "https://github.com/iraizo/react-next-template#readme",
"dependencies": {
"@types/express": "^4.17.8",
"@types/react": "^16.9.49",
"@zeit/next-css": "^1.0.1",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"net": "^1.0.2",
"next": "^9.5.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.0.3"
}
}