-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.02 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
{
"name": "steam-api",
"version": "1.0.0",
"description": "Steam API",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"eslint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"eslint-fix": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --fix",
"predev": "npm run swagger",
"prebuild": "npm run swagger",
"build": "tsc",
"devTsoa": "concurrently \"nodemon\" \"nodemon -x tsoa spec\"",
"dev": "concurrently \"nodemon\"",
"swagger": "tsoa spec",
"test": "echo \"Error: no test specified\" && exit 1"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "ts-node src/index.ts"
},
"keywords": [
"Steam API",
"NodeJS",
"Express",
"TSOA",
"Swagger"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/lodash": "^4.14.202",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.6",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-alloy": "^5.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-classnames": "^0.3.x",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unicorn": "^50.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.13.0",
"nodemon": "^3.0.2",
"prettier": "^3.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"buffer": "^6.0.3",
"dayjs": "^1.11.10",
"express": "^4.18.2",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"swagger-ui-express": "^4.6.3",
"tsoa": "^6.0.0"
},
"packageManager": "[email protected]"
}