-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.46 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
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "Ruanshan.com",
"private": true,
"description": "ruanshan.com website",
"version": "4.1.0",
"repository": {
"type": "git",
"url": "https://github.com/RuanShan/ruanshan_site"
},
"scripts": {
"dev": "nodemon --watch src -e js app.js",
"test": "mocha --exit test/*.js",
"build": "NODE_ENV=production babel src -d build && npm run pretty",
"pretty": "prettier --write --print-width 80 --single-quote --trailing-comma es5 --tab-width 4 --no-semi 'src/**/*.js' 'tests/**/*.js'",
"start-production": "NODE_ENV=production pm2 start ecosystem.json",
"clean": "npm cache clean --force"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 4,
"arrowParens": "always"
},
"engines": {
"node": ">=8.x"
},
"dependencies": {
"ali-oss": "^6.1.1",
"autolinker": "^1.6.2",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"better-assert": "1.0.2",
"debug": "^3.1.0",
"dotenv": "^6.0.0",
"es6-promise": "^4.2.8",
"escape-html": "^1.0.3",
"faker": "^4.1.0",
"fs-extra": "^6.0.1",
"ghost-paginator": "^0.1.2",
"handlebars": "^4.1.2",
"handlebars-paginate": "^0.1.0",
"interval-cache": "^1.0.0",
"ioredis": "^3.2.2",
"kcors": "^2.2.1",
"knex": "^0.15.0",
"koa": "^2.5.0",
"koa-better-static2": "^1.0.2",
"koa-bodyparser": "^4.2.0",
"koa-bouncer": "^6.0.4",
"koa-compress": "^3.0.0",
"koa-handlebars": "^2.0.0",
"koa-helmet": "^4.0.0",
"koa-json-error": "^3.1.2",
"koa-logger": "^3.2.0",
"koa-ratelimit": "^4.1.1",
"koa-router": "^7.4.0",
"koa-static": "^4.0.2",
"koa-stylus": "^0.1.0",
"koa-useragent": "^1.1.0",
"log4js": "^2.8.0",
"mysql2": "^1.6.5",
"npm": "^6.1.0",
"pm2": "^2.10.4",
"promise-hash": "^1.2.0",
"randexp": "^0.4.9",
"sequelize": "^4.44.3",
"sequelize-paginate": "^1.1.6",
"stylus": "^0.54.5",
"uuid": "^3.2.1",
"wpapi": "^1.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"mocha": "^5.0.5",
"nodemon": "^1.11.0",
"prettier": "^1.12.0"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 2 versions",
"safari >= 7"
]
}
}
]
]
},
"license": "MIT"
}