-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.91 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.91 KB
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
{
"name": "privateapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "DEBUG=email-templates nodemon --legacy-watch --verbose --inspect=0.0.0.0:9229 --ignore '*.json' --ignore 'materials/' --ignore 'conjugations/' --ignore 'locutions/' --ignore 'svg/' --ignore 'tmpSVG' --ignore 'pictograms/' --trace-deprecation privateapi.js",
"serve": "pm2-runtime start ecosystem.config.js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"archiver": "^3.0.0",
"axios": "^0.18.0",
"bluebird": "^3.7.2",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"cron": "^1.7.2",
"crypto-js": "^3.1.9-1",
"email-templates": "^5.0.4",
"express": "^4.16.3",
"filenamify": "^2.1.0",
"formidable": "^1.2.1",
"fs-extra": "5.0.0",
"jsonpath": "^1.0.2",
"JSONStream": "^1.3.5",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"mongodb": "^3.2.2",
"mongoose": "^5.0.11",
"nodemailer": "^6.0.0",
"passport": "^0.4.0",
"passport-anonymous": "^1.0.1",
"passport-http-bearer": "^1.0.1",
"randomatic": "^3.1.1",
"recursive-readdir": "^2.2.2",
"rsync": "^0.6.1",
"sitemap": "^6.3.3",
"stopword": "^0.1.13",
"stopwords-iso": "^0.4.0",
"tar": "^6.0.1",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^5.14.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"nodemon": "^1.17.2",
"prettier": "^3.6.2"
},
"prettier": {
"singleQuote": true,
"semi": false
}
}