-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "blog",
"version": "1.0.0",
"description": "个人博客",
"main": "index.js",
"bin": {
"push": "./push.sh"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node server/index.js",
"build": "next build",
"start": "cross-env NODE_ENV=production node server/index.js",
"lint": "eslint --ext .js pages",
"deploy": "npm run build && cross-env NODE_ENV=production pm2 start server/index.js"
},
"author": "feikaixin",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.6",
"@fortawesome/free-brands-svg-icons": "^5.4.1",
"@fortawesome/free-solid-svg-icons": "^5.4.1",
"@fortawesome/react-fontawesome": "^0.1.3",
"@zeit/next-sass": "^1.0.1",
"cross-env": "^5.2.0",
"isomorphic-unfetch": "^3.0.0",
"koa": "^2.5.3",
"koa-body": "^4.0.4",
"koa-router": "^7.4.0",
"koa-session": "^5.9.0",
"log4js": "^3.0.6",
"lru-cache": "^4.1.3",
"markdown-it": "^8.4.2",
"markdown-it-emoji": "^1.4.0",
"marked": "^0.5.2",
"moment": "^2.22.2",
"mysql": "^2.16.0",
"next": "^7.0.2",
"node-sass": "^4.9.4",
"nprogress": "^0.2.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"webpack": "^4.22.0"
},
"devDependencies": {
"eslint": "^5.7.0",
"eslint-plugin-react": "^7.11.1",
"mini-css-extract-plugin": "^0.4.4",
"outils": "^1.5.0"
}
}