-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.32 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
{
"name": "profileviewcount",
"version": "1.0.0",
"description": "A little image generation tool that displays the number of views that your profile has.",
"main": "src/index.js",
"scripts": {
"dev": "nodemon --exec ts-node --files src/index.ts",
"run": "ts-node --files src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"format": "npx prettier --write .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NerdyTechy/ProfileViewCount.git"
},
"author": "NerdyTechy",
"license": "ISC",
"bugs": {
"url": "https://github.com/NerdyTechy/ProfileViewCount/issues"
},
"homepage": "https://github.com/NerdyTechy/ProfileViewCount#readme",
"dependencies": {
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"helmet": "^8.0.0",
"mysql2": "^3.12.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.6",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"ts-node": "^10.9.2"
}
}