-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "cg-backend",
"version": "1.0.0",
"description": "Backend for cg",
"main": "src/index.js",
"scripts": {
"test": "jest",
"smart_install": "sh smart_install.sh",
"dev": "nodemon -w src --config --ext js,graphql --exec \"babel-node src\"",
"dev:with-migrations": "npx sequelize db:migrate && npm run dev",
"dev:smart:with-migrations": "npm run smart_install && npx sequelize db:migrate && npm run dev",
"build": "npm run cleanup && babel src -D -d dist",
"start": "node dist/index.js",
"cleanup": "rm -rf dist"
},
"keywords": [
"Node.js",
"GraphQL"
],
"license": "ISC",
"dependencies": {
"amazon-cognito-identity-js": "^3.3.3",
"apollo-server-express": "^2.17.0",
"aws-sdk": "^2.756.0",
"axios": "^0.19.2",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"faker": "^4.1.0",
"graphql": "^14.7.0",
"graphql-bigint": "^1.0.0",
"graphql-resolvers": "^0.4.2",
"http": "0.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mercadopago": "^1.3.2",
"pg": "^7.18.2",
"sequelize": "^5.22.3",
"sequelize-cli": "^5.5.1"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"@types/jest": "^25.2.3",
"babel-jest": "^26.3.0",
"babel-plugin-root-import": "^6.5.0",
"jest": "^26.4.2",
"nodemon": "^1.18.9",
"standard": "^14.3.4"
}
}