-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.73 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
57
{
"name": "keeme-backend",
"version": "1.0.0",
"description": "API REST da aplicação KeeMe ",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"start:dev": "NODE_ENV=development ts-node-dev --transpile-only --ignore-watch node_modules src/server.ts",
"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js",
"dc:up": "sudo docker-compose up --build -d",
"dc:down": "docker-compose down",
"test": "node --experimental-vm-modules node_modules/.bin/jest"
},
"author": "Gustavo Carvalho Silva <gustavocrvl42@gmail.com> (https://github.com/gustavocrvls)",
"repository": {
"type": "git",
"url": "https://github.com/gustavocrvls/keeme-backend"
},
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"celebrate": "^14.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"minio": "^7.0.18",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"path": "^0.12.7",
"typeorm": "^0.2.29"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.8",
"@types/faker": "^5.5.9",
"@types/jest": "^27.4.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/minio": "^7.0.7",
"@types/multer": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"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",
"faker": "^6.6.6",
"jest": "^27.4.7",
"prettier": "^2.2.1",
"ts-jest": "^27.1.2",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.5"
}
}