-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.12 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
{
"name": "wikihooku-api",
"version": "0.1.0",
"description": "Backend of wikihooku project",
"main": "index.js",
"author": "WikiHooku Team",
"contributors": [
"xcarolr@gmail.com"
],
"license": "MIT",
"scripts": {
"start": "node server/index.js",
"dev": "nodemon server",
"dev:debug": "nodemon server --inspect",
"dev:env:build": "migrate-mongo up",
"dev:env:restart": "npm run dev:env:stop && npm run dev:env:start",
"dev:env:start": "CURRENT_UID=`id -u`:`id -g` docker-compose up -d",
"dev:env:start:debug": "CURRENT_UID=`id -u`:`id -g` docker-compose up",
"dev:env:stop": "CURRENT_UID=`id -u`:`id -g` docker-compose down",
"dev:env:status": "CURRENT_UID=`id -u`:`id -g` docker-compose ps",
"migrate:create": "migrate-mongo create",
"migrate:down": "migrate-mongo down",
"migrate:up": "migrate-mongo up",
"migrate:status": "migrate-mongo status",
"lint": "eslint -c .eslintrc.js {server}/**",
"lint:fix": "eslint --fix -c .eslintrc.js {server}/**"
},
"dependencies": {
"@sendgrid/mail": "^7.6.0",
"bcryptjs": "^2.4.3",
"dotenv": "^14.2.0",
"i18next": "^21.6.7",
"i18next-fs-backend": "^1.1.4",
"i18next-http-middleware": "^3.1.5",
"jsonwebtoken": "^8.5.1",
"migrate-mongo": "^8.2.3",
"mongoose": "^6.1.7",
"nodemailer": "^6.9.7",
"passport": "^0.5.2",
"passport-anonymous": "^1.0.1",
"passport-http-bearer": "^1.0.1",
"pino": "^7.6.4",
"pino-pretty": "^7.5.0",
"restify": "^10.0.0",
"restify-cors-middleware2": "^2.2.0",
"restify-pino-logger": "^3.0.0",
"restify-router": "^0.6.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-security": "^1.4.0",
"husky": "^4.3.8",
"nodemon": "^2.0.15",
"yorkie": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run test:unit"
}
}
}