-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
99 lines (99 loc) · 2.76 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "draw",
"version": "1.0.3",
"description": "A Champions League draw simulator",
"keywords": [
"cl",
"draw",
"champions",
"league",
"seeding",
"football",
"uefa",
"fifa"
],
"homepage": "https://github.com/inker/draw#readme",
"bugs": {
"url": "https://github.com/inker/draw/issues"
},
"license": "GPLv3",
"author": "Anton",
"main": "index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/inker/draw.git"
},
"imports": {
"#*": [
"./src/*"
]
},
"scripts": {
"prepare": "patch-package && husky",
"pre-commit": "lint-staged --allow-empty",
"lint:js": "eslint --ext .ts,.tsx,.js,.jsx --max-warnings=0 --cache src",
"lint:css": "stylelint './src/**/*.{ts,tsx,js,jsx,css,scss,postcss}'",
"lint": "run-p -c \"lint:css -- {1}\" \"lint:js -- {1}\" --",
"prettier": "prettier --cache --check .",
"check-types": "tsc --project tsconfig.json --noEmit",
"build": "npm run build --prefix build",
"start": "npm start --prefix build",
"test": "vitest"
},
"dependencies": {
"bowser": "^2.11.0",
"date-fns": "^4.1.0",
"delay.js": "^2.0.1",
"dom-to-image": "^2.6.0",
"fast-delete": "^1.0.1",
"file-saver": "^2.0.5",
"flag-icons": "^7.0.2",
"history": "^5.3.0",
"html-tags": "^4.0.0",
"i18n-iso-countries": "^7.7.0",
"jotai": "^2.6.2",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"memoize-one": "^6.0.0",
"normalize.css": "^8.0.1",
"prettier": "^3.2.5",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-github-btn": "^1.2.2",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.3.0",
"styled-components": "^6.0.2",
"tslib": "^2.3.1"
},
"devDependencies": {
"@inker/build": "file:./webpack",
"@inker/eslint-config-typescript": "^11.0.0",
"@types/dom-to-image": "^2.6.4",
"@types/file-saver": "^2.0.5",
"@types/lodash": "^4.14.180",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@types/react-helmet": "^6.1.5",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.24",
"@types/webpack-env": "^1.18.4",
"eslint": "^8.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-vitest": "^0.4.1",
"husky": "^9.0.6",
"lint-staged": "^15.1.0",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"postcss-styled-syntax": "^0.6.1",
"stylelint": "^16.0.2",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.3",
"typescript": "^5.0.4",
"vitest": "^2.0.2"
}
}