-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.13 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": "web-2-projeto-2",
"version": "1.0.0",
"engines": {
"node": "16.x"
},
"main": "index.js",
"repository": "git@github.com:guilhermemiua/web-2-projeto-2.git",
"author": "guilhermemiua <guilhermemiua@gmail.com>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production node src/server",
"start:dev": "NODE_ENV=development nodemon src/server",
"migration:make": "NODE_ENV=development knex --knexfile src/config/knexfile.js migrate:make",
"migration:latest": "NODE_ENV=development knex --knexfile src/config/knexfile.js migrate:latest",
"migration:rollback": "NODE_ENV=development knex --knexfile src/config/knexfile.js migrate:rollback",
"migration:run": "NODE_ENV=development knex --knexfile src/config/knexfile.js migrate:up",
"prod:migration:run": "NODE_ENV=production knex --knexfile src/config/knexfile.js migrate:up",
"seed:make": "NODE_ENV=development knex --knexfile src/config/knexfile.js seed:make",
"seed:run": "NODE_ENV=development knex --knexfile src/config/knexfile.js seed:run",
"prod:seed:run": "NODE_ENV=production knex --knexfile src/config/knexfile.js seed:run",
"pretest": "NODE_ENV=test knex --knexfile src/config/knexfile.js migrate:latest && NODE_ENV=test knex --knexfile src/config/knexfile.js seed:run",
"test": "NODE_ENV=test jest",
"posttest": "NODE_ENV=test knex --knexfile src/config/knexfile.js migrate:rollback"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"date-fns": "^2.22.1",
"dotenv": "^9.0.1",
"express": "^4.17.1",
"faker": "^5.5.3",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.19",
"multer": "^1.4.2",
"nodemailer": "^6.6.3",
"objection": "^2.2.15",
"pg": "^8.7.1",
"shortid": "^2.2.16",
"yup": "^0.32.9"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^27.0.6",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"supertest": "^6.1.4"
}
}