-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.16 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
{
"name": "inkedfur-v3-backend",
"version": "1.0.0",
"main": "src/index.ts",
"repository": "",
"author": "",
"license": "ISC",
"scripts": {
"start": "node .",
"lint": "eslint .",
"format": "prettier --write src/**/*.ts && npm run lint -- --fix",
"clean": "rimraf dist bundle.min.*",
"dev": "nodemon",
"build": "swc ./src -d dist -s true --copy-files && npm run bundle",
"bundle": "node ./scripts/bundle.js",
"build:watch": "swc ./src -d dist -w",
"prebuild": "npm run clean",
"generate:schema": "hygen generator schema",
"generate:certs": "./scripts/certs.generate.sh"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/mailgun-js": "^0.22.13",
"@types/multer": "^1.4.7",
"@types/nunjucks": "^3.2.2",
"@types/uuid": "^9.0.2",
"@types/validator": "^13.7.17",
"ajv": "^8.12.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^2.1.1",
"authorizenet": "^1.0.8",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"eslint": "^8.42.0",
"express": "^4.18.2",
"hygen": "^6.2.11",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mailgun-js": "^0.22.0",
"module-alias": "^2.2.3",
"mongoose": "^7.2.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nunjucks": "^3.2.4",
"uuid": "^9.0.0",
"validator": "^13.9.0"
},
"devDependencies": {
"@swc-node/register": "^1.6.5",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.55",
"@types/cors": "^2.8.13",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.197",
"@types/morgan": "^1.9.4",
"@types/node": "^20.4.9",
"@types/nodemon": "^1.19.2",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"esbuild": "0.17.19",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"superagent-proxy": "^3.0.0",
"typescript": "^5.0.4"
},
"_moduleAliases": {
"~": "src"
},
"volta": {
"node": "16.19.0"
}
}