-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 2.13 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
{
"name": "liberty-engine",
"version": "0.6.0",
"engines": {
"node": ">=10"
},
"private": true,
"scripts": {
"setup": "git submodule init && git submodule update && bin/install && cd view && npm i --unsafe-perm && node_modules/.bin/nuxt build",
"dev": "PORT=40001 VIEW_PORT=30000 NODE_ENV=development bin/www",
"start": "pm2 start ecosystem.config.js",
"status": "pm2 status ecosystem.config.js",
"stop": "pm2 stop ecosystem.config.js",
"delete": "pm2 delete ecosystem.config.js",
"upgrade": "pm2 kill && git submodule update && npm i --unsafe-perm && node_modules/.bin/sequelize db:migrate && cd view && npm i --unsafe-perm && node_modules/.bin/nuxt build && cd .. && npm run start",
"log": "pm2 log --lines 100",
"test": "node_modules/.bin/mocha --recursive -u exports tests/api",
"benchmark": "node_modules/.bin/mocha --recursive -u exports tests/benchmark",
"mkdoc": "yuidoc -c ./docs/yui.json",
"docserver": "yuidoc --server -c ./docs/yui.json",
"lint": "eslint ./lib"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"jison": "^0.4.18",
"mocha": "^5.2.0",
"pegjs": "^0.10.0"
},
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "^1.18.3",
"cheerio": "^1.0.0-rc.3",
"colors": "^1.3.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"helmet": "^3.22.0",
"highlight.js": "^9.14.2",
"html-minifier": "^4.0.0",
"i18next": "^11.10.2",
"inquirer": "^6.2.2",
"ip": "^1.1.5",
"jsonwebtoken": "^8.4.0",
"katex": "^0.10.0",
"lodash": "^4.17.15",
"mathjs": "^5.4.2",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"mysql2": "^1.6.5",
"node-telegram-bot-api": "^0.30.0",
"nodemailer": "^5.1.1",
"pm2": "^4.4.0",
"promise-redis": "0.0.5",
"sanitize-html": "^1.23.0",
"sax": "^1.2.4",
"sequelize": "^5.21.9",
"sequelize-cli": "",
"striptags": "^3.1.1",
"uuid": "^3.3.2",
"validator": "^10.11.0"
}
}