-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
95 lines (95 loc) · 3.14 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
{
"name": "developertools.tech",
"version": "0.1.0",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"prepare": "husky install",
"type-check": "tsc --noEmit",
"cq": "npm run type-check && npm run lint && npm run prettier && npm run test:ci",
"cq:ci": "npm run type-check && npm run lint:ci && npm run prettier:ci && npm run test:ci",
"test": "jest --watch",
"test:ci": "jest --ci",
"lint": "eslint --ignore-path .gitignore --ignore-path .eslintignore --fix . --ext ts --ext tsx",
"lint:ci": "eslint --ignore-path .gitignore --ignore-path .eslintignore . --ext ts --ext tsx",
"prettier": "prettier --write components pages hooks lib utility data",
"prettier:ci": "prettier --check components pages hooks lib utility data",
"translations:check": "node ./scripts/translations-check.mjs"
},
"dependencies": {
"@emotion/cache": "^11.10.3",
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.4",
"@fontsource/jetbrains-mono": "^4.5.10",
"@mui/icons-material": "^5.10.3",
"@mui/material": "^5.10.3",
"change-case": "^4.1.2",
"clsx": "^1.2.1",
"colors-convert": "^1.4.1",
"csso": "^5.0.5",
"diff": "^5.1.0",
"hash-sum": "^2.0.0",
"html-entities": "^2.3.3",
"i18next": "^22.0.0",
"js-base64": "^3.7.2",
"lower-case": "^2.0.2",
"marked": "^4.1.1",
"next": "12.2.5",
"next-i18next": "^12.1.0",
"next-images": "^1.8.4",
"next-plugin-yaml": "^1.0.1",
"next-pwa": "^5.6.0",
"next-sitemap": "^3.1.30",
"otpauth": "^9.1.5",
"prettier": "^2.7.1",
"random": "^3.0.6",
"react": "18.2.0",
"react-colorful": "^5.6.1",
"react-dom": "18.2.0",
"react-i18next": "^11.18.6",
"react-qr-code": "^2.0.12",
"sharp": "^0.31.1",
"title-case": "^3.0.3",
"upper-case": "^2.0.2",
"use-eye-dropper": "^1.4.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/csso": "^5.0.0",
"@types/diff": "^5.0.2",
"@types/hash-sum": "^1.0.0",
"@types/i18next": "^13.0.0",
"@types/marked": "^4.0.7",
"@types/node": "18.7.14",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.4",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-testing-library": "^5.6.3",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"language-list": "^0.0.3",
"lint-staged": "^13.0.3",
"ts-node": "^10.9.1",
"typescript": "4.8.2"
}
}