-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.79 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.79 KB
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
{
"name": "marquinhos-web-api",
"version": "1.0.0",
"description": "Marquinhos API",
"main": "dist",
"type": "module",
"dependencies": {
"axios": "^1.13.6",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.5.0",
"morgan": "^1.10.0",
"spotify-web-api-node": "^5.0.2",
"tslib": "^2.6.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@types/bun": "^1.3.11",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^18.17.5",
"@types/spotify-web-api-node": "^5.0.10",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"eslint": "^9.23.0",
"eslint-import-resolver-typescript": "^4.4.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.4.1",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "5.1.6"
},
"scripts": {
"build": "bun build src/index.ts --target=bun --outdir=./dist --sourcemap=external",
"dev": "bun --watch src/index.ts",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "bun test tests/**/*.spec.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rm -rf dist/ .logs/",
"start": "bun run src/index.ts",
"prepare": "husky"
},
"author": "Devaneios",
"license": "ISC",
"lint-staged": {
"*.ts": ["prettier --write", "eslint --fix"]
}
}