-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.11 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
69
70
71
{
"name": "nextjs-hapi-saga",
"version": "0.0.1",
"description": "nextjs 模版: nextjs + typescript + jest + redux-saga",
"main": "index.js",
"author": "didilinkin <929213769@qq.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"dev": "nodemon server/index.ts",
"build": "next build && node ./scripts/default-lang && tsc --project tsconfig.server.json",
"start:prod": "node --inspect .next/production-server"
},
"dependencies": {
"@babel/core": "7.2.2",
"@material-ui/core": "^3.8.3",
"@zeit/next-typescript": "^1.1.1",
"accepts": "^1.3.3",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.0.5",
"babel-plugin-react-intl": "^2.3.1",
"babel-runtime": "7.0.0-beta.3",
"dotenv-webpack": "^1.6.0",
"es6-promise": "^4.2.5",
"glob": "^7.1.1",
"hapi": "^17.8.1",
"hoist-non-react-statics": "^3.0.0-rc.1",
"immutable": "^4.0.0-rc.12",
"intl": "^1.2.5",
"isomorphic-unfetch": "^3.0.0",
"jss": "^9.8.7",
"lodash": "^4.17.11",
"next": "latest",
"next-redux-saga": "^3.0.0",
"next-redux-wrapper": "^2.1.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-intl": "^2.2.3",
"react-jss": "^8.6.1",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-saga": "^0.16.2",
"styled-components": "^4.1.3"
},
"devDependencies": {
"@types/jest": "23.0.0",
"@types/lodash": "^4.14.119",
"@types/next": "^7.0.6",
"@types/next-redux-saga": "^3.0.1",
"@types/next-redux-wrapper": "^2.0.2",
"@types/react": "^16.7.20",
"@types/react-dom": "^16.0.11",
"@types/react-redux": "^6.0.11",
"babel-jest": "23.0.1",
"babel-plugin-styled-components": "^1.10.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"jest": "23.1.0",
"nodemon": "^1.18.7",
"path": "^0.12.7",
"prop-types": "^15.6.2",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "16.2.0",
"redux-devtools-extension": "^2.13.7",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typescript": "^3.2.2",
"typescript-babel-jest": "^1.0.5",
"webpack": "^4.27.1"
}
}