forked from Real-Dev-Squad/calendar-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.84 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "calendar-api",
"version": "0.0.2",
"private": true,
"main": "dist/server.js",
"scripts": {
"lint": "eslint . && echo '✔ Your .js files look good.'",
"lint-fix": "eslint . --fix",
"test": "npm run lint && npm run test-unit && npm run test-integration",
"test-integration": "cross-env NODE_ENV=test nyc mocha --require ts-node/register test/integration/**",
"test-unit": "cross-env NODE_ENV=test nyc mocha --require ts-node/register test/unit/**",
"build": "./node_modules/typescript/bin/tsc",
"prestart": "npm run build",
"start": "node dist/server.js",
"render-start": "cross-env NODE_ENV=staging nodemon server.ts",
"dev": "cross-env NODE_ENV=development tsc-watch --onSuccess \"node ./dist/server.js\"",
"prisma-format": "npx prisma format",
"prisma-generate": "prisma generate",
"format": "prettier --write .",
"format-check": "prettier --check ."
},
"dependencies": {
"@googleapis/oauth2": "^1.0.4",
"@hapi/boom": "^10.0.0",
"@prisma/client": "^5.2.0",
"@vvo/tzdb": "^6.105.0",
"config": "^3.3.8",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"date-fns": "^2.29.3",
"debug": "~2.6.9",
"dotenv": "^16.0.3",
"express": "~4.16.1",
"helmet": "^6.0.0",
"http-errors": "~1.6.3",
"jsonwebtoken": "^9.0.0",
"morgan": "~1.9.1",
"node-cache": "^5.1.2",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"passport-microsoft": "^1.0.0",
"prisma": "^5.2.0",
"winston": "3.8.2",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/config": "^3.3.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/http-errors": "^1.8.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/mocha": "^10.0.1",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.3",
"@types/passport": "^1.0.11",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-microsoft": "^0.0.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"concurrently": "^7.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.5.0",
"mocha": "^10.2.0",
"nock": "^13.2.9",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"sinon": "^15.0.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsc-watch": "^5.0.3",
"typescript": "^5.2.2"
},
"engines": {
"node": ">16.0.0"
}
}