-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
{
"name": "pronto-entregue-backend",
"version": "1.5.0",
"main": "src/app.js",
"license": "MIT",
"scripts": {
"preinstall": "node ./preinstall.js",
"start": "node ./build/app.js",
"dev": "nodemon ./src/app.js",
"docker": "docker-compose up",
"build": "sucrase ./src -d ./build --transforms imports && yarn copy_static",
"copy_static": "cpx \"src/**/*.{pug,png,jpg,css}\" build -v",
"lint": "eslint --cache --color --ext .jsx,.js src"
},
"dependencies": {
"@google-cloud/storage": "^4.1.3",
"@google/maps": "^1.1.0",
"@googlemaps/google-maps-services-js": "^2.0.2",
"apollo-server": "^2.9.3",
"bull-board": "1.0.0-alpha.8",
"bullmq": "^1.8.13",
"cors": "^2.8.5",
"cpx": "^1.5.0",
"dataloader": "^2.0.0",
"dotenv": "^8.0.0",
"email-templates": "^6.0.0",
"expo-server-sdk": "^3.5.0",
"express": "^4.17.1",
"firebase-admin": "^8.12.1",
"graphql": "^14.5.4",
"graphql-redis-subscriptions": "^2.2.1",
"graphql-subscriptions": "^1.1.0",
"graphql-type-json": "^0.3.1",
"ioredis": "^4.16.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"mysql2": "^1.6.5",
"node-cache": "^5.1.0",
"nodemailer": "^6.3.0",
"pug": "^2.0.4",
"sequelize": "^5.13.0",
"sequelize-transparent-cache": "^2.3.0",
"sequelize-transparent-cache-ioredis": "^2.3.0",
"sharp": "^0.25.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-import-helpers": "^1.0.2",
"nodemon": "^1.19.1",
"prettier": "2.1.1",
"sucrase": "^3.12.1"
}
}