-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
68 lines (68 loc) · 2.28 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "next-typescript-example",
"version": "0.1.0",
"description": "Example app using Next.js 5 with Typescript",
"scripts": {
"clean": "rimraf .next",
"analyze": "cross-env ANALYZE=all yarn run build",
"dev": "yarn run build:next && cross-env NODE_ENV=development nodemon server.ts -p $PORT",
"debug": "yarn run build:next && cross-env NODE_ENV=development nodemon --inspect server.ts -p $PORT",
"build": "yarn run clean && yarn run build:next && yarn run build:server",
"build:next": "next build",
"build:server": "cp ./server.ts .next/server.ts && cp ./routes.ts .next/routes.ts && cp -r static .next/static",
"start": "cross-env NODE_ENV=production node server.ts -p $PORT",
"tslint": "./node_modules/.bin/tslint -c tslint.json -p tsconfig.json",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": ["tslint --fix", "git add"]
},
"keywords": ["Next.js", "Typescript", "React", "Redux", "SSR"],
"author": "Takuro Monji <1984tkr@gmail.com>",
"license": "MIT",
"engines": {
"node": "8.9.4",
"npm": "5.6.0"
},
"dependencies": {
"express": "^4.16.2",
"immer": "^1.0.2",
"isomorphic-unfetch": "^2.0.0",
"next": "^5.0.0",
"next-redux-wrapper": "^1.3.5",
"nextjs-dynamic-routes": "^2.1.6",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"recompose": "^0.26.0",
"redux": "^3.7.2",
"typescript-fsa": "^2.5.0",
"typescript-fsa-reducers": "^0.4.5"
},
"devDependencies": {
"@types/next": "^2.4.7",
"@types/react": "^16.0.36",
"@types/react-dom": "^16.0.3",
"@types/react-redux": "^5.0.14",
"@types/recompose": "^0.24.4",
"@types/redux": "^3.6.0",
"@zeit/next-bundle-analyzer": "^0.0.2",
"@zeit/next-sass": "^0.0.9",
"@zeit/next-typescript": "^0.0.8",
"cross-env": "^5.1.3",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"node-sass": "^4.7.2",
"nodemon": "^1.14.12",
"prettier": "^1.10.2",
"redux-devtools-extension": "^2.13.2",
"rimraf": "^2.6.2",
"styled-jsx-plugin-sass": "^0.2.2",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.7.0",
"tslint-plugin-prettier": "^1.3.0",
"tslint-react": "^3.4.0",
"typescript": "^2.7.1",
"webpack-bundle-analyzer": "^2.10.0"
}
}