-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.82 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
{
"name": "mordor",
"version": "0.0.0",
"private": true,
"description": "Программа для ЭВМ",
"author": "Mordor HTML Team",
"repository": "github:mishaberezin/mordor",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "eslint . && ava",
"deploy": "pm2 deploy production update",
"deploy-fast": "pm2 deploy production_fast update"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
},
"license": "UNLICENSED",
"dependencies": {
"@sentry/node": "^4.6.3",
"body-parser": "^1.18.3",
"canvas": "^1.6.13",
"cloudinary": "^1.13.2",
"config": "1.x",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"flat-cache": "^2.0.1",
"form-data": "^2.3.3",
"get-port": "^4.1.0",
"http-proxy": "^1.17.0",
"http-proxy-response-rewrite": "0.0.1",
"lodash": "^4.17.10",
"mongoose": "^5.4.14",
"multi-geocoder": "0.1.x",
"ngrok": "^3.1.1",
"node-fetch": "^2.3.0",
"ocrad.js": "git+https://github.com/antimatter15/ocrad.js.git",
"promise-retry": "^1.1.1",
"puppeteer": "^1.12.2",
"request": "^2.85.0",
"slimbot": "^0.8.6",
"tempy": "^0.2.1",
"typograf": "^6.8.0",
"url-parse": "^1.4.4"
},
"devDependencies": {
"ava": "1.0.0-rc.2",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-config-xo": "^0.25.1",
"eslint-plugin-import": "^2.16.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"prettier": "1.15.3"
},
"ava": {
"files": "**/*.test.js",
"babel": false,
"compileEnhancements": false,
"timeout": "10s"
}
}