-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.64 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
{
"name": "axe-api-template",
"version": "1.0.4",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node ./build/index.js",
"dev": "tsx watch index.ts",
"build": "rm -rf build && tsc",
"postbuild": "sh scripts/postbuild.sh",
"migrate:up": "knex --esm migrate:up",
"test": "jest",
"test:dev": "jest --watch"
},
"dependencies": {
"@elastic/elasticsearch": "^8.13.1",
"axe-api": "1.4.1",
"bcrypt": "^5.1.1",
"formidable": "^3.5.1",
"jsonwebtoken": "^9.0.2",
"mysql": "^2.18.1",
"robust-validator": "^1.1.0",
"slugify": "^1.6.6"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/node": "^7.23.9",
"@babel/preset-env": "^7.24.0",
"@babel/runtime": "^7.24.0",
"@tsconfig/recommended": "^1.0.3",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/ioredis": "^5.0.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/multer": "^1.4.11",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.14",
"@types/rate-limit-redis": "^3.0.0",
"@types/sharp": "^0.32.0",
"@types/uuid": "^9.0.8",
"babel-loader": "^9.1.3",
"babel-plugin-module-resolver": "^5.0.0",
"babel-preset-minify": "^0.5.2",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.7.0",
"node-cache": "^5.1.2",
"redis": "^4.6.13",
"set-value": "^4.1.0",
"sqlite3": "^5.1.7",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
}
}