-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.93 KB
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
{
"name": "node-gavel",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"setup": "npm install -g yarn && yarn install && cd client && yarn install",
"test": "echo \"Error: no test specified\" && exit 1",
"client": "cd client && yarn start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build",
"reset-db": "node api/scripts/reset-db",
"create-fake-data": "node api/scripts/create-fake-data"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.6.1",
"node-sass": "^4.9.3",
"nodemon": "^1.18.3",
"sass-loader": "^7.1.0"
},
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"@stdlib/stdlib": "0.0.50",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"chance": "^1.0.16",
"cloudinary": "^1.13.2",
"crypto-js": "^3.1.9-1",
"cryptr": "^4.0.1",
"dotenv": "^6.0.0",
"email-templates": "^5.0.1",
"express": "^4.16.3",
"fuzzy-search": "^2.1.0",
"http-status": "^1.2.0",
"joi": "^13.6.0",
"lorem-ipsum": "^1.0.6",
"moment-timezone": "^0.5.21",
"mongoose": "^5.2.9",
"nodemailer": "^4.6.8",
"nodemailer-sendgrid": "^1.0.3",
"numjs": "^0.16.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-token": "^0.2.0",
"path": "^0.12.7",
"react-countdown-now": "^1.3.0",
"react-joyride": "^2.0.0-15",
"react-switch": "^3.0.4",
"scipy": "^0.1.4",
"slugify": "^1.3.3",
"uuid": "^3.3.2",
"yarn": "^1.9.4"
},
"engines": {
"node": "8.9.x"
}
}