-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.74 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
{
"name": "vending-mechine-api",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"dev-ts": "ts-node -r tsconfig-paths/register ./src/servers/app.ts",
"dev": "node dist/src/app.cjs",
"lint": "eslint . -c ./.eslintrc.json --cache",
"test": "jest --detectOpenHandles",
"tjs": "tjscli tsj -c ./.tjsclirc -i",
"webpack:dev": "webpack --config webpack.config.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/swagger": "^8.12.0",
"@fastify/swagger-ui": "^1.10.1",
"fastify": "^4.24.3",
"fastify-plugin": "^4.5.1",
"http-status-codes": "^2.3.0",
"json-schema": "^0.4.0",
"node": "^21.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"eslint": "8.53.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsdoc": "46.4.3",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "5.0.0",
"jest": "^29.7.0",
"jsonc-parser": "^3.2.0",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"simple-tjscli": "^0.11.1",
"tap": "^18.5.7",
"ts-jest": "^29.1.1",
"ts-json-schema-generator": "^1.4.0",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"type-fest": "^4.6.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0",
"webpack-node-externals": "^3.0.0"
}
}