-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2 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
68
69
70
{
"name": "garden-back",
"version": "1.1.0",
"description": "A virtual garden for all kinds of folks",
"main": "build/index.js",
"author": "Marcos Kicis",
"scripts": {
"start": "node ./build/src/index.js",
"build": "tsc",
"debug": "tsc --watch",
"dev": "ts-node-dev --transpile-only --ignore-watch node_modules --respawn ./src/index.ts",
"prod": "tsc && node ./build/src/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hastoontests/desafio-d1.git"
},
"keywords": [],
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/hastoontests/desafio-d1/issues"
},
"homepage": "https://github.com/hastoontests/desafio-d1#readme",
"dependencies": {
"@types/node-cron": "^3.0.0",
"@types/supertest": "^2.0.11",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.1.0",
"helmet": "^4.6.0",
"http-errors": "^1.8.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^6.0.9",
"morgan": "^1.10.0",
"node-cron": "^3.0.0",
"node-schedule": "^2.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"winston": "^3.3.3",
"xss-clean": "^0.1.1",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/node": "^16.10.3",
"@types/node-schedule": "^1.3.2",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.4",
"supertest": "^6.1.6",
"prettier": "^2.4.1",
"ts-jest": "^27.0.6",
"ts-node-dev": "^1.1.8"
}
}