-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.25 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
42
43
44
{
"name": "hello-next",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "next build && tsc --project tsconfig.server.json",
"dev": "nodemon server/index.ts",
"start-NEW": "NODE_ENV=production node .next/production-server/index.js",
"start": "next start -p 8000",
"start-unix": "next start -p $PORT",
"start-windows": "next start -p %PORT%",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.0.0-beta.54",
"@zeit/next-typescript": "^1.1.0",
"babel-loader": "^7.1.5",
"express": "^4.16.3",
"isomorphic-unfetch": "^2.1.0",
"js-cookie": "^2.2.0",
"next": "^6.1.1",
"next-routes": "^1.4.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-markdown": "^3.3.4",
"typescript": "^2.9.2",
"typescript-babel-jest": "^1.0.5"
},
"devDependencies": {
"@types/next": "^6.0.4",
"@types/js-cookie": "^2.1.0",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"@types/styled-jsx": "^2.2.3",
"fork-ts-checker-webpack-plugin": "^0.4.3",
"nodemon": "^1.18.3",
"ts-node": "^7.0.0",
"tsconfig-paths-webpack-plugin": "^3.2.0"
}
}