-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "gratibox-backend",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=prod node ./src/server.js",
"start:dev": "NODE_ENV=dev nodemon ./src/server.js",
"start:test": "NODE_ENV=test node ./src/server.js",
"test": "NODE_ENV=test npx jest",
"test:watch": "NODE_ENV=test npx jest -i --watch"
},
"homepage": "https://github.com/cgabrieu/gratibox-backend#readme",
"bugs": {
"url": "https://github.com/cgabrieu/gratibox-backend/issues"
},
"keywords": [],
"author": "Carlos Gabriel de Azevedo",
"license": "ISC",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"babel-jest": "^27.3.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.1"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "^2.25.3",
"faker": "^5.5.3",
"formidable": "^3.1.3",
"husky": "^7.0.4",
"jest": "^27.3.1",
"nodemon": "^2.0.15",
"prettier": "2.4.1",
"supertest": "^6.1.6"
}
}