-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (45 loc) · 1.37 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
{
"name": "vuttr",
"version": "0.0.1",
"description": "VUTTR API [Very Useful Tools to Remember]",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "npm-run-all -p dev:*",
"dev:server": "cross-env NODE_ENV=development nodemon src/index.js",
"dev:queue": "cross-env NODE_ENV=development nodemon src/queue.js",
"test": "npm-run-all -p test:*",
"test:server": "cross-env NODE_ENV=test jest --detectOpenHandles --forceExit",
"test:queue": "cross-env NODE_ENV=test node src/queue.js",
"start": "npm-run-all -p start:*",
"start:server": "cross-env NODE_ENV=production node src/index.js",
"start:queue": "cross-env NODE_ENV=production node src/queue.js"
},
"repository": {
"type": "git",
"url": "https://github.com/rgrassi1/vuttr.git"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"bull": "^3.12.1",
"cors": "^2.8.5",
"date-fns": "^2.7.0",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"nodemailer": "^6.3.1",
"nodemailer-express-handlebars": "^3.1.0",
"nodemailer-mailgun-transport": "^1.4.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"cross-env": "^6.0.3",
"jest": "^24.9.0",
"nodemon": "^1.19.3",
"npm-run-all": "^4.1.5",
"supertest": "^4.0.2"
}
}