-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "siosa",
"version": "0.0.1",
"description": "Path Of Exile build library",
"bugs": "https://github.com/sanghin/siosa/issues",
"repository": "github:sanghin/siosa",
"license": "MIT",
"keywords": [
"path of exile",
"poe",
"search",
"tool",
"library",
"build"
],
"author": "Sanghin",
"contributors": [
"Luc Tribolet <luc.tribolet@gmail.com> (https://tribolet.fr)"
],
"engines": {
"node": ">= 16.9.0"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --fix --ext .ts,.tsx"
},
"dependencies": {
"@types/node": "^17.0.2",
"@types/react": "^17.0.37",
"@types/xml2json": "^0.11.4",
"dotenv": "^10.0.0",
"knex": "^0.95.12",
"next": "^12.0.7",
"node-fetch": "^3.0.0",
"pg": "^8.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.5.4",
"xml2json": "^0.12.0"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"prettier": "^2.4.1"
}
}