-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.08 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.08 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
{
"name": "slender-ui",
"version": "1.0.0",
"description": "Slender UI monorepo",
"main": "index.js",
"repository": "git@github.com:eq-lab/slender-ui.git",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"lib/*",
"contract-bindings/*"
],
"scripts": {
"prepare": "husky install",
"force-remove": "rimraf node_modules packages/*/node_modules",
"force-update": "yarn force-remove && yarn",
"linter": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"linter:fix": "eslint --fix \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint:staged": "lint-staged",
"lint:all": "yarn run prettier:fix && yarn run linter:fix",
"test:jest": "jest --config=./jest.settings.js",
"test:watch": "jest --config=./jest.settings.js --watch",
"test": "yarn run test:jest && yarn run prettier && yarn run linter"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lint-staged": "^14.0.1",
"next": "^13.4.19",
"prettier": "^3.0.2",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"typescript": "5.2.2"
},
"lint-staged": {
"*.!({js,ts,jsx,tsx})": "prettier --write --ignore-unknown",
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"engines": {
"node": ">=20.18.2",
"yarn": ">=1.0.0",
"npm": "please-use-yarn"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}