-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
{
"name": "axe-api-template",
"version": "1.1.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node ./build/index.js",
"start: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.15.0",
"axe-api": "1.4.3",
"formidable": "^3.5.1",
"mysql": "^2.18.1",
"robust-validator": "^1.1.0"
},
"devDependencies": {
"tsx": "^4.19.0",
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/node": "^7.25.0",
"@babel/preset-env": "^7.25.4",
"@babel/runtime": "^7.25.6",
"@tsconfig/recommended": "^1.0.7",
"@types/cors": "^2.8.17",
"@types/ioredis": "^5.0.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/multer": "^1.4.12",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.15",
"@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.2",
"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.6.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.7.0",
"node-cache": "^5.1.2",
"redis": "^4.7.0",
"set-value": "^4.1.0",
"sqlite3": "^5.1.7",
"typescript": "^5.5.4"
}
}