-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "backend",
"version": "1.0.0",
"description": "teste back-end mercafacil",
"main": "index.js",
"repository": "[email protected]:j3rrb/teste-mercafacil.git",
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@types/passport-jwt": "^3.0.6",
"bcrypt": "^5.0.1",
"crypto-js": "^4.1.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.14",
"mongoose": "^6.0.13",
"mysql2": "^2.3.3",
"passport": "^0.5.0",
"passport-jwt": "^4.0.0",
"pg": "^8.7.1"
},
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --ignore-watch node_modules src/server.ts"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/crypto-js": "^4.0.2",
"@types/express": "^4.17.13",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
}
}