-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 869 Bytes
/
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
{
"name": "statistics",
"version": "1.0.0",
"description": "A simple statistics API that tracks usage of my tools.",
"main": "src/app.js",
"scripts": {
"test": "node src/app.js",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css,scss,md}\"",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NerdyTechy/Statistics.git"
},
"author": "NerdyTechy",
"license": "ISC",
"bugs": {
"url": "https://github.com/NerdyTechy/Statistics/issues"
},
"homepage": "https://github.com/NerdyTechy/Statistics#readme",
"dependencies": {
"dotenv": "^16.4.7",
"express": "^4.21.1",
"moment": "^2.30.1",
"mysql2": "^3.12.0"
},
"devDependencies": {
"eslint": "^9.18.0",
"prettier": "^3.4.2"
}
}