-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.94 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.94 KB
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
{
"name": "chess-tournaments",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "yarn lint:eslint && yarn lint:css && yarn tsc",
"lint:eslint": "eslint --ext .js,.ts,.tsx ./",
"lint:eslint:fix": "eslint --fix ./",
"lint:css": "stylelint '**/*.{ts,tsx}'",
"downloadGames": "ts-node bin/downloadGames",
"downloadResults": "ts-node bin/downloadResults",
"prepare": "husky install"
},
"dependencies": {
"dayjs": "^1.11.0",
"dom-to-image": "^2.6.0",
"lucide-react": "^0.19.0",
"next": "12.1.4",
"next-i18next": "^10.5.0",
"next-language-detector": "^1.0.2",
"node-fetch": "2",
"node-ts": "^5.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-intersection-observer": "^8.33.1",
"sharp": "^0.30.3",
"styled-components": "^5.3.5",
"ts-node": "^10.7.0"
},
"devDependencies": {
"@types/dom-to-image": "^2.6.4",
"@types/node": "^17.0.23",
"@types/node-fetch": "2.6.1",
"@types/react": "^17.0.40",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-sort-keys-shorthand": "^2.1.0",
"husky": "7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"stylelint": "^14.6.1",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^4.6.3"
},
"lint-staged": {
"*.(js|ts|tsx)": [
"prettier --write",
"git add",
"eslint",
"stylelint '**/*.{ts,tsx}'"
],
"*.(ts|tsx)": [
"bash -c tsc --noEmit"
]
},
"license": "MIT"
}