-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"type": "module",
"name": "d2-buddy-database",
"version": "1.0.0",
"private": true,
"description": "Information storage for d2-buddy. Includes scripts to pull info from the Bungie API periodically.",
"dependencies": {
"axios": "^0.26.1",
"dotenv": "^16.0.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -r build",
"prepare": "husky install",
"node": "node --require dotenv/config",
"scripts": "node scripts/index.js"
},
"prettier": {},
"repository": {
"type": "git",
"url": "git+https://github.com/CostasAK/d2-buddy-database.git"
},
"author": "CostasAK (https://github.com/CostasAK)",
"license": "MIT",
"bugs": {
"url": "https://github.com/CostasAK/d2-buddy-database/issues"
},
"homepage": "https://github.com/CostasAK/d2-buddy-database#readme",
"devDependencies": {
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.6.2"
},
"lint-staged": {
"*.{js,json,md,yml}": "prettier --write"
}
}