-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.67 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": "tas-server",
"version": "0.0.1",
"description": "Backend for the Truck Appointment System (TAS) 🚚 - a web server implementing a GraphQL API.",
"main": "lib/index.js",
"repository": "https://github.com/j-d-b/tas-server.git",
"author": "Jacob Brady <[email protected]>",
"license": "GPL-3.0",
"private": true,
"engines": {
"node": "^10.7.0",
"yarn": "^1.7.0"
},
"scripts": {
"setup": "node lib/data/setup-scripts/setup-prod",
"start": "NODE_ENV=production node lib/index",
"setup:dev": "node lib/data/setup-scripts/setup-dev",
"start:dev": "NODE_ENV=development nodemon lib/index",
"develop": "yarn setup:dev && yarn start:dev",
"lint": "eslint lib",
"test": "jest --silent --runInBand"
},
"dependencies": {
"apollo-errors": "^1.9.0",
"apollo-resolvers": "^1.3.1",
"apollo-server-express": "^1.3.6",
"bcrypt": "^3.0.4",
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-tools": "^3.0.5",
"handlebars": "^4.1.0",
"jsonwebtoken": "^8.2.2",
"make-dir": "^1.3.0",
"moment-timezone": "^0.5.27",
"morgan": "^1.9.1",
"mysql2": "^1.5.3",
"nanoid": "^1.3.1",
"node-cron": "^2.0.3",
"nodemailer": "^4.6.7",
"nodemailer-mailgun-transport": "^1.4.0",
"sequelize": "^5.15.1",
"twilio": "^3.39.1",
"validator": "^10.4.0",
"winston": "^3.1.0"
},
"devDependencies": {
"eslint": "^5.15.1",
"graphql-playground-middleware-express": "^1.6.3",
"jest": "^24.9.0",
"nodemon": "^1.17.5",
"supertest": "^4.0.2"
}
}