-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.96 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.96 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
62
63
64
65
{
"name": "comopedir-api",
"version": "1.0.0",
"description": "Como pedir GraphQL API.",
"repository": "https://github.com/comopedir/comopedir-api",
"author": "Nandico Aquino <nandico@gmail.com>",
"license": "MIT",
"private": false,
"type": "module",
"engines": {
"node": "10.19.0"
},
"scripts": {
"start": "NODE_ENV=local nodemon --exec babel-node src/server.js",
"clean": "rm -rf build/",
"pre-build": "mkdir build && cp package.json build/ && cd build && npm install",
"build": "npm run pre-build && babel src --out-dir build --source-maps inline --copy-files"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.9.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@types/node": "^13.11.0",
"babel-core": "^7.0.0-bridge.0",
"babel-node": "^0.0.1-security",
"babel-plugin-dotenv": "^0.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"dotenv": "^8.2.0",
"knex": "^0.20.13",
"nodemon": "^2.0.2",
"pg": "^8.0.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@babel/polyfill": "^7.8.7",
"@googlemaps/google-maps-services-js": "^2.5.5",
"airtable": "^0.8.1",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^15.0.0",
"graphql-iso-date": "^3.6.1",
"graphql-relay": "^0.6.0",
"graphql-type-json": "^0.3.1",
"jsonwebtoken": "^8.5.1",
"pino": "^6.1.1",
"pino-pretty": "^4.0.0",
"pretty-error": "^2.1.1",
"rate-limiter-flexible": "^2.1.3",
"remove-accents": "^0.4.2",
"tinify": "^1.6.0-beta.2",
"ts-node": "^8.8.2",
"twilio": "^3.42.1",
"uuid": "^7.0.3",
"yup": "^0.28.3"
}
}