-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.97 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.97 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "github-nextJS-TS",
"version": "1.0.0",
"description": "使用TS+next.js+KOA+Oauth实现的github-web",
"main": "index.js",
"scripts": {
"dev": "cross-env PORT=8080 nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "cross-env PORT=8080 NODE_ENV=production node dest-server/server/index.js",
"eslint": "eslint pages store lib layouts --ext .ts,.tsx",
"eslint:fix": "eslint pages store lib layouts --ext .ts,.tsx --fix",
"analyze:browser": "cross-env BUNDLE_ANALYZE=both next build"
},
"pre-commit": [
"eslint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/summarychm/github-nextJS-TS.git"
},
"keywords": [
"next.js",
"typescript",
"koa",
"oauth",
"react-hooks"
],
"author": "max.liu",
"license": "ISC",
"bugs": {
"url": "https://github.com/summarychm/github-nextJS-TS/issues"
},
"homepage": "https://github.com/summarychm/github-nextJS-TS#readme",
"dependencies": {
"@types/antd": "^1.0.0",
"@types/atob": "^2.1.2",
"@types/axios": "^0.14.0",
"@types/koa": "^2.0.51",
"@types/koa-router": "^7.0.42",
"@types/koa-session": "^5.10.1",
"@types/moment": "^2.13.0",
"@types/next": "^8.0.6",
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"@types/react-redux": "^7.1.5",
"@types/redux": "^3.6.0",
"@types/redux-thunk": "^2.1.0",
"@types/styled-jsx": "^2.2.8",
"@types/zeit__next-typescript": "^0.1.2",
"@zeit/next-css": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"antd": "^3.24.2",
"atob": "^2.1.2",
"axios": "^0.19.0",
"github-markdown-css": "^3.0.1",
"ioredis": "^4.14.1",
"koa": "^2.10.0",
"koa-body": "^4.1.1",
"koa-router": "^7.4.0",
"koa-session": "^5.12.3",
"markdown-it": "^10.0.0",
"moment": "^2.24.0",
"next": "^9.1.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"typesafe-actions": "^4.4.2"
},
"devDependencies": {
"@types/ioredis": "^4.0.18",
"@types/jest": "^24.0.19",
"@types/prettier": "^1.18.3",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"@zeit/next-bundle-analyzer": "^0.1.2",
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"eslint-config-alloy": "^3.0.0",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"open-browser-webpack-plugin": "0.0.5",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"redux-devtools-extension": "^2.13.8",
"typescript": "^3.6.4"
}
}