-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "lyweb",
"version": "1.0.0",
"description": "Web aplication to view lyrics",
"main": "main.ts",
"scripts": {
"dev": "nodemon",
"start": "node ./dist/main.js",
"build": "tsc --build",
"test": "echo \"Error: no test specified\" && exit 1",
"preinstall": "npx only-allow pnpm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alt-art/lyweb.git"
},
"author": "alt-art <pedromendescraft@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alt-art/lyweb/issues"
},
"homepage": "https://github.com/alt-art/lyweb#readme",
"dependencies": {
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"pug": "^3.0.3",
"redis": "^4.6.15"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.14.12",
"@types/pug": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}