-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.11 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
58
59
60
61
62
63
64
65
66
67
{
"name": "api-rest-typescript",
"version": "1.0.0",
"description": "API Rest usando TypeScript",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=pro node build/src/server.js",
"dev": "NODE_ENV=dev ts-node-dev -r tsconfig-paths/register --respawn --ignore-watch node_modules ./src/server.ts",
"build": "tsc",
"lint": "eslint . --ext .ts --fix",
"test": "NODE_ENV=test jest --verbose --projects ./__test__ --runInBand ",
"test:coverage": "NODE_ENV=test jest --verbose --runInBand --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Grover101/Api-Rest-TypeScript.git"
},
"author": "Grover101",
"license": "ISC",
"bugs": {
"url": "https://github.com/Grover101/Api-Rest-TypeScript/issues"
},
"homepage": "https://github.com/Grover101/Api-Rest-TypeScript#readme",
"dependencies": {
"@typegoose/typegoose": "10.1.0",
"bcryptjs": "2.4.3",
"cors": "2.8.5",
"dotenv": "16.0.3",
"express": "4.18.2",
"jsonwebtoken": "^9.0.0",
"module-alias": "^2.2.2",
"mongoose": "6.9.0",
"multer": "1.4.5-lts.1"
},
"devDependencies": {
"@shelf/jest-mongodb": "^4.1.6",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "2.8.13",
"@types/dotenv": "8.2.0",
"@types/express": "4.17.16",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/module-alias": "^2.0.1",
"@types/mongoose": "5.11.97",
"@types/multer": "1.4.7",
"@types/node": "18.11.18",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.50.0",
"eslint": "8.0.1",
"eslint-config-prettier": "8.6.0",
"eslint-config-standard": "17.0.0",
"eslint-config-standard-with-typescript": "33.0.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "15.0.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.0.0",
"jest": "^29.4.2",
"prettier": "2.8.3",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node-dev": "2.0.0",
"tsconfig-paths": "4.1.2",
"typescript": "*"
}
}