This repository was archived by the owner on Aug 3, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.26 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
48
49
{
"name": "platzi-user-api",
"version": "1.6.1",
"description": "Unofficial API RESTful for Platzi user",
"main": "src/index.ts",
"scripts": {
"start": "ts-node .",
"test": "mocha -r ts-node/register src/**/test.ts --timeout 15000 --slow 7000 --exit",
"dev": "nodemon",
"tslint": "tslint --project ./",
"tslint:fix": "npm run tslint -- --fix",
"check": "bash ./scripts/check.sh"
},
"keywords": [
"platzi",
"user",
"api"
],
"author": "Jecsham Castillo",
"license": "MIT",
"dependencies": {
"apicache": "^1.6.2",
"consola": "^2.15.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"mongoose": "^5.13.3",
"node-fetch": "^2.6.1",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@types/apicache": "^1.2.3",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/mocha": "^9.0.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^16.4.3",
"@types/node-fetch": "^2.5.12",
"@types/serve-favicon": "^2.5.3",
"mocha": "^9.0.3",
"nodemon": "^2.0.12",
"ts-node": "^10.1.0",
"tslint": "^6.1.3",
"typescript": "^4.3.5"
}
}