-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.21 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
{
"private": false,
"name": "typescript-starter",
"version": "1.4.0",
"author": "ProxityStudios",
"license": "MIT",
"bugs": {
"url": "https://github.com/ProxityStudios/typescript-starter/issues"
},
"scripts": {
"start": "node ./dist/main.js",
"dev": "ts-node-dev --respawn ./src/main.ts --env development",
"build": "run-s fix clean-dist build:tsc",
"build:tsc": "tsc --build",
"clean-dist": "rimraf dist/",
"format": "eslint . --fix"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.3"
},
"dependencies": {
"dotenv": "^16.4.5",
"rotating-file-stream": "^3.2.3",
"tslog": "^4.9.3",
"yargs": "^17.7.2"
}
}