-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.55 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "talentmaker-server",
"version": "1.0.0",
"private": true,
"description": "Server for Talentmaker",
"license": "proprietary",
"repository": {
"type": "git",
"url": "git+https://github.com/Luke-zhang-04/talentmaker-server.git"
},
"author": "",
"homepage": "https://github.com/Luke-zhang-04/talentmaker-server#readme",
"bugs": {
"url": "https://github.com/Luke-zhang-04/talentmaker-server/issues"
},
"main": "lib/index.js",
"engines": {
"node": ">= 14"
},
"scripts": {
"build": "tsc",
"build:prod": "bash scripts/build-prod.bash",
"dev": "bash -c \"./development\"",
"dev:no-tsc": "bash -c \"./development --no-tsc\"",
"format": "prettier . --write && eslint src --ext ts,js,tsx,jsx --max-warnings=0 --cache --fix",
"lint": "eslint src --ext ts,js,tsx,jsx --max-warnings=0 --cache",
"lint:fix": "eslint src --ext ts,js,tsx,jsx --max-warnings=0 --cache --fix",
"migrate:dev": "dotenv -e .env.development -e .env.example -- prisma migrate dev",
"prepare": "command -v husky && husky install",
"prismaGenerate": "prisma generate && node ./scripts/fix-prisma",
"serve": "NODE_ENV='development' ./scripts/serve",
"serve:offline": "NODE_ENV='offline' ./scripts/serve",
"start": "NODE_ENV='development' ./scripts/start",
"start:offline": "NODE_ENV='offline' ./scripts/start",
"test": "./scripts/test"
},
"keywords": [],
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.27.0",
"@aws-sdk/client-lambda": "^3.46.0",
"@luke-zhang-04/dateplus": "^4.0.0-beta1",
"@luke-zhang-04/utils": "github:luke-zhang-04/utils#semver:^1.7.0",
"amazon-cognito-identity-js": "^5.0.4",
"base64-url": "^2.3.3",
"chalk": "^4.1.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"disposable-email-domains": "^1.0.58",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"helmet": "^4.6.0",
"isomorphic-dompurify": "^0.15.0",
"jsonwebtoken": "^8.5.1",
"lambda-ses": "github:talentmaker/lambda-ses#semver:^1.1.0",
"mailcheck": "^1.1.1",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"node-abort-controller": "^3.0.1",
"node-fetch": "^2.6.1",
"re2": "^1.16.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@prisma/client": "^3.6.0",
"@types/base64-url": "^2.2.0",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/disposable-email-domains": "^1.0.2",
"@types/express": "^4.17.11",
"@types/express-rate-limit": "^5.1.3",
"@types/express-serve-static-core": "^4.17.18",
"@types/jsonwebtoken": "^8.5.2",
"@types/mailcheck": "^1.1.33",
"@types/morgan": "^1.9.2",
"@types/node": "^14.17.9",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"chokidar": "^3.4.3",
"dotenv-cli": "^4.0.0",
"eslint": "^7.30.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.0",
"lint-staged": "^11.0.0",
"node-notifier": "^10.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"prettier-plugin-jsdoc": "^0.3.23",
"prettier-plugin-package": "^1.3.0",
"prettier-plugin-prisma": "^3.6.0",
"prettier-plugin-sh": "^0.7.1",
"prisma": "^3.6.0",
"tsc-watch": "^4.4.0",
"typescript": "^4.4.2"
},
"types": "src/index.ts",
"prisma": {
"seed": "./scripts/seed"
},
"workspaces": [
"__tests__",
"__mocks__"
]
}