-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.43 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
{
"scripts": {
"dev": "nodemon src/server/index.ts",
"build": "next build && tsc --project tsconfig.server.json",
"start": "NODE_ENV=production node .next/production-server/server/index.js"
},
"dependencies": {
"@babel/core": "^7.0.0-beta.51",
"@types/express": "^4.16.0",
"@types/next": "^6.0.0",
"@types/react": "^16.3.18",
"@types/react-i18next": "^7.3.1",
"@zeit/next-typescript": "^1.1.0",
"babel-loader": "^7.1.4",
"es6-promise": "^4.2.4",
"express": "^4.16.3",
"i18next": "^11.3.3",
"i18next-browser-languagedetector": "^2.1.0",
"i18next-express-middleware": "^1.1.1",
"i18next-node-fs-backend": "^1.0.0",
"i18next-xhr-backend": "^1.5.1",
"isomorphic-unfetch": "^2.0.0",
"next": "6.0.3",
"next-compose-plugins": "^2.1.1",
"next-redux-saga": "^3.0.0-beta.1",
"next-redux-wrapper": "^2.0.0-beta.6",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"react-i18next": "^7.7.0",
"react-redux": "^5.0.7",
"recompose": "^0.27.1",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"redux-thunk": "^2.3.0",
"typescript": "^2.9.2",
"typescript-babel-jest": "^1.0.5"
},
"devDependencies": {
"nodemon": "^1.17.5",
"prettier": "^1.13.4",
"redux-devtools-extension": "^2.13.2",
"ts-node": "^6.1.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.9.0",
"tslint-react": "^3.5.1"
}
}