-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.48 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "admin",
"version": "1.0.0",
"description": "itxuye-blog-front",
"main": "index.js",
"scripts": {
"start:dev": "cross-env NODE_ENV=development next src -- -p 3004",
"start:prod": "cross-env NODE_ENV=production next src",
"start": "next start -p $PORT",
"build": "cross-env NODE_ENV=production next build src && PORT=3005 npm start",
"deploy": "pm2 start npm --name 'blog-admin-next' -- run build --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/itxuye/blog-admin.git"
},
"keywords": [
"typescript",
"react",
"nextjs",
"apollo",
"graphql"
],
"author": "itxuye",
"license": "ISC",
"bugs": {
"url": "https://github.com/itxuye/blog-admin/issues"
},
"homepage": "https://github.com/itxuye/blog-admin#readme",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"antd": "^3.13.2",
"apollo": "^2.5.0",
"apollo-boost": "^0.1.28",
"apollo-cache-inmemory": "^1.4.3",
"apollo-client": "^2.4.13",
"apollo-link": "^1.2.8",
"apollo-link-context": "^1.0.14",
"apollo-link-error": "^1.1.7",
"apollo-link-http": "^1.5.11",
"apollo-link-logger": "^1.2.3",
"classnames": "^2.2.6",
"cookie": "^0.3.1",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"isomorphic-unfetch": "^3.0.0",
"next": "^8.0.1",
"next-ga": "^2.3.4",
"node-sass": "^4.11.0",
"prop-types": "^15.7.1",
"react": "^16.8.1",
"react-apollo": "^2.4.1",
"react-apollo-hooks": "^0.4.2",
"react-dom": "^16.8.1"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.3.0",
"@types/classnames": "^2.2.7",
"@types/cookie": "^0.3.2",
"@types/next": "^8.0.0",
"@types/node": "^11.9.3",
"@types/react": "^16.8.2",
"@types/react-dom": "^16.8.0",
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "^1.0.1",
"babel-plugin-import": "^1.11.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"cross-env": "^5.2.0",
"dotenv-webpack": "^1.7.0",
"less": "^3.9.0",
"offline-plugin": "^5.0.6",
"ts-import-plugin": "^1.5.5",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-loader": "^3.5.4",
"tslint-react": "^3.6.0",
"typescript": "^3.3.3",
"workbox-webpack-plugin": "^3.6.3"
}
}