-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.01 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
{
"name": "shftr",
"version": "0.5.0",
"description": "Scheduling and Random Assignment for Zendesk",
"author": "RC Maples",
"main": "server.js",
"private": true,
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"date-fns": "^2.23.0",
"express": "^4.17.1",
"googleapis": "^84.0.0",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"lodash.filter": "^4.6.0",
"lodash.get": "^4.4.2",
"lodash.isboolean": "^3.0.3",
"lodash.mapkeys": "^4.6.0",
"lodash.pick": "^4.4.0",
"mongodb": "^3.6.9",
"mongoose": "^5.12.11",
"mongoose-findorcreate": "^3.0.0",
"mongoose-long": "^0.4.0",
"morgan": "^1.10.0",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"rrule": "^2.6.8",
"uuid": "^8.3.2",
"validator": "^13.6.0"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"dotenv": "^10.0.0",
"expect": "^27.2.5",
"faker": "^5.5.3",
"mocha": "^9.1.2"
},
"engines": {
"node": "14.17.0",
"npm": "6.14.13"
},
"scripts": {
"client:install": "cd client && npm install",
"client:build": "cd client && npm run build",
"dev": "npm run dev:client && npm run dev:server",
"dev:client": "cd client && npm run build",
"dev:server": "export NODE_ENV=development && nodemon server.js",
"start": "export NODE_ENV=production && node server.js",
"heroku-postbuild": "npm run client:install && npm run client:build",
"test": "export NODE_ENV=test && mocha test/*.test.js --exit",
"test-watch": "nodemon --exec \"npm test\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/rcmaples/shftr.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rcmaples/shftr/issues"
},
"homepage": "https://github.com/rcmaples/shftr#readme"
}