-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.88 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"gen-env": "npx gen-env-types .env -o src/env.d.ts -e .",
"build": "tsc",
"watch": "tsc -w",
"test:watch": "jest --watch",
"node-javascript": "node dist/index.js",
"dev-javascript": "nodemon dist/index.js",
"node-ts": "ts-node src/index.ts",
"dev-ts": "nodemon src/index.ts",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.9",
"@types/express": "^4.17.8",
"@types/express-session": "1.17.0",
"@types/jest": "^27.0.3",
"@types/mime": "^2.0.3",
"@types/node": "^14.14.14",
"@types/nodemailer": "^6.4.0",
"@types/type-is": "^1.6.3",
"@types/uuid": "^8.3.0",
"gen-env-types": "^1.0.5",
"husky": "^6.0.0",
"jest": "^27.4.3",
"nodemon": "^2.0.6",
"prettier": "2.4.1",
"pretty-quick": "^3.1.1",
"ts-jest": "^27.1.0",
"ts-node": "^10.8.2",
"typescript": "^4.1.3"
},
"dependencies": {
"@rschedule/core": "^1.2.3",
"@rschedule/moment-date-adapter": "^1.2.3",
"@rschedule/standard-date-adapter": "^1.2.3",
"apollo-server-express": "^2.19.0",
"argon2": "^0.27.1",
"aws-sdk": "^2.856.0",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"date-fns": "^2.27.0",
"dotenv-safe": "^8.2.0",
"exceljs": "^4.2.1",
"express": "^4.17.1",
"express-session": "^1.17.2",
"graphql": "^15.7.2",
"keycloak-connect": "^15.0.2",
"keycloak-connect-graphql": "^0.7.0",
"mime": "^2.5.2",
"moment": "^2.29.1",
"nodemailer": "^6.4.17",
"pg": "^8.7.1",
"stripe": "^8.188.0",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.38",
"typeorm-cursor-pagination": "^0.6.1",
"uuid": "^8.3.2"
}
}