This repository was archived by the owner on Jan 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.88 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.88 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
{
"name": "skyebot",
"version": "1.0.0",
"author": "SkyeBot Team <jobs@skyebot.website",
"license": "AGPL-3.0",
"private": true,
"scripts": {
"postinstall": "yarn build:packages",
"fix": "yarn lint:fix && yarn prettier:fix",
"lint": "eslint ./ --ext js,jsx,ts,tsx",
"lint:fix": "eslint ./ --ext js,jsx,ts,tsx --fix",
"prettier": "prettier --check \"./**/*.{js,jsx,ts,tsx}\"",
"prettier:fix": "prettier --write \"./**/*.{js,jsx,ts,tsx}\"",
"test": "jest",
"build:packages": "node scripts/build-packages"
},
"workspaces": {
"packages": [
"clients/**",
"shared/**",
"packages/**"
]
},
"resolutions": {
"yup": "^0.32.9",
"@hitechline/reactools": ">=1.1.2"
},
"devDependencies": {
"@hitechline/eslint-config": "^2.0.2",
"@netlify/plugin-nextjs": "^4.1.1",
"@next/bundle-analyzer": "^12.0.7",
"@prettier/plugin-xml": "^1.2.0",
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/node": "^17.0.6",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"@zeit/next-source-maps": "^0.0.3",
"babel-jest": "^27.4.6",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.7",
"jest-dom": "^4.0.0",
"lerna": "^4.0.0",
"next-compose-plugins": "^2.2.1",
"next-sitemap": "^1.6.203",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
}
}