-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
95 lines (95 loc) · 2.75 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
{
"name": "eesast-api",
"license": "MIT",
"private": true,
"scripts": {
"preinstall": "npm config set registry https://registry.npmjs.org && yarn config set registry https://registry.yarnpkg.com",
"start": "nodemon",
"debug": "nodemon --debug",
"build": "babel src -d build -x \".ts\" --ignore \"src/@types/**/*\" --source-maps",
"serve": "cross-env NODE_ENV=production node build/index.js",
"lint": "eslint --ext .js,.ts src/",
"typecheck": "tsc --noUnusedLocals"
},
"dependencies": {
"@babel/runtime": "7.26.0",
"@types/node-cron": "3.0.11",
"@types/web-push": "3.6.4",
"async-mutex": "0.5.0",
"bcrypt": "5.1.1",
"cors": "2.8.5",
"cos-nodejs-sdk-v5": "2.14.6",
"debug": "4.4.0",
"dockerode": "4.0.2",
"dotenv": "16.4.7",
"express": "4.21.2",
"graphql": "16.9.0",
"graphql-request": "6.1.0",
"html-to-text": "9.0.5",
"isemail": "3.2.0",
"js-yaml": "4.1.0",
"jsonwebtoken": "9.0.2",
"morgan": "1.10.0",
"node-cron": "3.0.3",
"nodemailer": "6.9.16",
"qcloud-cos-sts": "3.1.1",
"unisms": "0.0.6",
"web-push": "3.6.7"
},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@babel/node": "7.26.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-numeric-separator": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@types/bcrypt": "5.0.2",
"@types/cors": "2.8.17",
"@types/debug": "4.1.12",
"@types/dockerode": "3.3.32",
"@types/express": "4.17.21",
"@types/html-to-text": "9.0.4",
"@types/js-yaml": "4.0.9",
"@types/jsonwebtoken": "9.0.7",
"@types/morgan": "1.9.9",
"@types/nodemailer": "6.4.17",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"nodemon": "3.1.7",
"typescript": "5.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn lint && yarn typecheck"
}
},
"lint-staged": {
"{src/**/*,test/**/*}.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"nodemonConfig": {
"env": {
"DEBUG": "eesast-api"
},
"watch": [
"src"
],
"ext": "ts,json",
"ignore": [
"src/**/*.test.ts"
],
"exec": "babel-node --extensions \".ts\" --config-file \"./.babelrc\" src/index.ts"
},
"version": "0.0.0"
}