-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
67 lines (67 loc) · 1.91 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": "ts-api-rest",
"version": "1.0.0",
"description": "Ejemplo de API REST con TypeScript",
"main": "/build/index.js",
"scripts": {
"dev": "tsc --watch",
"dev:watch": "nodemon",
"dev:run": "ts-node --files src/index.ts",
"build": "rimraf ./build && tsc && cp .env ./build",
"start": "npm run build && node build/index.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest",
"test:sec": "jest --runInBand",
"test:coverage": "jest --coverage --runInBand",
"test:watch": "jest --watchAll",
"docker:mongo": "sh ./mongo.sh",
"docker:clean": "sh ./clean-docker.sh",
"docker:deploy": "docker-compose up -d"
},
"keywords": [
"TypeScript",
"NodeJS"
],
"author": "joseluisgs",
"license": "MIT",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-fileupload": "^1.1.6",
"@types/jest": "^26.0.22",
"@types/mongoose-unique-validator": "^1.0.4",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.16",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"supertest": "^6.1.3",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-validator": "^6.10.0",
"helmet": "^4.4.1",
"jwt-simple": "^0.5.6",
"mongoose": "^5.12.5",
"mongoose-unique-validator": "^2.0.3",
"morgan": "^1.10.0",
"uuid": "^8.3.2"
}
}