-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.19 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-ts-express",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"export": "next export && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["nextjs", "server-side-rendering", "expressjs"],
"author": "Stoqey Inc <[email protected]>",
"license": "ISC",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"express": "^4.17.1",
"isomorphic-unfetch": "^3.0.0",
"next": "^9.3.2",
"next-transpile-modules": "^2.3.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "^3.4.10"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/next": "^9.0.0",
"@types/node": "^12.0.8",
"@types/react": "^16.8.21",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "^4.1.16",
"@zeit/next-typescript": "^1.1.1",
"babel-plugin-styled-components": "^1.10.1",
"cross-env": "^5.2.0",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
}
}