-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "genshin-stats",
"version": "1.0.49",
"description": "Wrapper for Genshin Impact user statistics and game items and characters data.",
"main": "dist/index.js",
"author": "kaname-png",
"license": "MIT",
"private": false,
"scripts": {
"start": "ts-node src/index.ts",
"start:dev": "nodemon",
"build": "tsc -p tsconfig.json",
"lint": "eslint src/**/*.{js,ts} --quiet --fix"
},
"dependencies": {
"axios": "^0.21.1",
"genshin-db": "^3.3.0",
"tslib": "^2.2.0"
},
"devDependencies": {
"@types/node": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
}
}