-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.27 KB
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
{
"name": "adotpets-api",
"version": "0.0.0",
"main": "dist/server.js",
"private": true,
"repository": "https://github.com/devatbrazil/adotpets-api",
"scripts": {
"lint": "eslint src --ext ts --fix",
"compile": "tsc",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules --no-notify src/index.ts",
"migrations": "",
"migrations:rollback": "",
"seeds": ""
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"sqlite3": "^5.0.2",
"typescript": "^4.1.5",
"uuidv4": "^6.2.7"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.32",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "7.12.1",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "4.2.1",
"prettier": "^2.2.1",
"ts-node-dev": "^1.1.1"
}
}