-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "codify-back",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "jest --runInBand",
"dev": "npx nodemon ./src/server.js",
"build": "npx sequelize-cli db:migrate",
"start": "node ./src/server.js",
"seed": "npx sequelize-cli db:seed:all",
"unseed": "npx sequelize-cli db:seed:undo:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoffmannpaola/codify-back.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hoffmannpaola/codify-back/issues"
},
"homepage": "https://github.com/hoffmannpaola/codify-back#readme",
"dependencies": {
"axios": "^0.21.1",
"@sendgrid/mail": "^7.4.2",
"aws-sdk": "^2.852.0",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"git-commit-msg-linter": "^3.0.0",
"jest": "^26.6.3",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"nodemon": "^2.0.7",
"pg": "^8.5.1",
"promise-redis": "^0.0.5",
"sequelize": "^6.5.0",
"sequelize-cli": "^6.2.0",
"string-strip-html": "^8.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"git-commit-msg-linter": "^3.0.0",
"prettier": "^2.2.1",
"supertest": "^6.1.3"
}
}