-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 1.7 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
{
"name": "koa-api",
"version": "2.0.1",
"description": "Authentication, with refresh token & forgot password, Node Backend with KoaJS, mongoDB and mongoose",
"author": "Oscar Quinteros",
"private": false,
"engines": {
"node": "16.17.0"
},
"scripts": {
"start": "NODE_ENV=development nodemon app.js --exec",
"live": "NODE_ENV=production nodemon app.js --exec",
"test": "NODE_ENV=testing jest --forceExit",
"build": "NODE_ENV=production npx babel -d npm run format && build",
"format": "prettier --write --print-width 80 --single-quote --trailing-comma es5 --tab-width 2 --no-semi 'app.js' 'src/**/*.js' 'tests/**/*.js'",
"clean": "npm cache clean --force",
"seed": "node src/seed/seed.js"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/router": "^12.0.0",
"@sendgrid/mail": "^7.4.6",
"bcrypt": "^5.1.0",
"core-js": "^3.16.2",
"dotenv": "^6.0.0",
"formidable": "^1.2.2",
"jsonwebtoken": "^9.0.0",
"koa": "^2.14.1",
"koa-body": "^4.2.0",
"koa-helmet": "^5.2.0",
"koa-json-error": "^3.1.2",
"koa-qs": "^3.0.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"moment": "^2.29.1",
"mongoose": "^7.0.3",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"randexp": "^0.4.9",
"regenerator-runtime": "^0.13.9",
"sharp": "^0.31.1",
"slugify": "^1.4.5",
"string-strip-html": "^6.0.4"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/register": "^7.21.0",
"esm": "^3.2.25",
"nodemon": "^2.0.22",
"prettier": "^1.19.1"
},
"jest": {
"testEnvironment": "node"
}
}