-
Notifications
You must be signed in to change notification settings - Fork 312
/
_package.json
85 lines (85 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
{
"name": "<%= slug %>",
"version": "0.0.0",
"main": "<%= srcDir %>",
"private": true,
"scripts": {
"start": "node .",
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"dev": "nodemon -i \"*.test.js\" .",
"prod": "cross-env NODE_ENV=production nodemon -i \"*.test.js\" -r dotenv-safe/config .",
"lint": "eslint <%= srcDir %>",
"docs": "apidoc -i <%= srcDir %> -o docs && apidoc-markdown -p docs -o DOCS.md",
"postdocs": "open-cli docs/index.html"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": ["<rootDir>/test/setup.js"]
},
"devDependencies": {
"apidoc": "^0.20.0",
"apidoc-markdown": "^0.2.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"cross-env": "^7.0.2",
"dotenv-safe": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.0",
"eslint-plugin-standard": "^4.0.1",
"jest-cli": "^25.1.0",
"mongodb-memory-server": "^6.3.3",
"nock": "^12.0.2",
"nodemon": "^2.0.2",
"open-cli": "^6.0.0",
"sinon": "^4.0.1",
"supertest": "^4.0.2"
},
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-export-default-from": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.0",
<%_ if (generateAuthApi && passwordSignup) { _%>
"bcrypt": "^4.0.1",
<%_ } _%>
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"bodymen": "^1.1.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
<%_ if (https) { _%>
"express-force-ssl": "^0.3.2",
<%_ } _%>
<%_ if (generateAuthApi) { _%>
"jsonwebtoken": "^8.5.1",
<%_ } _%>
"mongoose": "^5.9.4",
"mongoose-keywords": "^0.4.0",
"morgan": "^1.9.1",
<%_ if (generateAuthApi) { _%>
"passport": "^0.4.1",
<%_ if (passwordSignup) { _%>
"passport-http": "^0.3.0",
<%_ } _%>
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^4.0.0",
<%_ } _%>
"querymen": "^2.1.4",
<%_ if (generateAuthApi) { _%>
"rand-token": "^0.4.0",
<%_ } _%>
"request": "^2.88.2",
"request-promise": "^4.2.5"
<%_ if (typeof sendgridKey !== 'undefined' && sendgridKey) { _%>,
"@sendgrid/mail": "^6.5.4"
<%_ } _%>
}
}