-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.9 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
{
"name": "bookstore-api",
"version": "1.1.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node ./build/index.js",
"dev": "ts-node-dev --respawn --clear index.ts",
"build": "rm -rf build && tsc",
"postbuild": "sh scripts/postbuild.sh",
"migrate:up": "knex --esm migrate:up",
"test": "jest",
"test:dev": "jest --watch",
"docker:build": "npm run build && cd build && docker build -t ozziest/bookstore:latest .",
"benchmark:custom": "k6 run benchmark/custom-users.js",
"benchmark:v1": "k6 run benchmark/v1-users.js",
"benchmark:v2": "k6 run benchmark/v2-users.js"
},
"dependencies": {
"@elastic/elasticsearch": "^8.16.2",
"axe-api": "1.5.2",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"mysql": "^2.18.1",
"node-cache": "^5.1.2",
"redis": "^4.7.0",
"robust-validator": "^1.1.1"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/node": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@faker-js/faker": "^8.4.1",
"@tsconfig/recommended": "^1.0.8",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/ioredis": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12",
"@types/node-cron": "^3.0.11",
"@types/sharp": "^0.32.0",
"@types/uuid": "^9.0.8",
"babel-loader": "^9.2.1",
"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",
"http-cache-semantics": ">=4.1.1",
"jest": "^29.7.0",
"json5": ">=2.2.3",
"nanoid": "^3.3.8",
"nodemon": "^3.1.7",
"set-value": "^4.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2"
}
}