-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.8 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.8 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": "@cloudscape-design/build-tools",
"version": "3.0.0",
"license": "Apache-2.0",
"type": "module",
"bin": {
"prepare-package-lock": "./lib/scripts/prepare-package-lock.js"
},
"exports": {
"./lib/dev-pages-utils": {
"types": "./lib/dev-pages-utils/index.d.ts",
"default": "./lib/dev-pages-utils/index.js"
},
"./lib/*": "./lib/*",
"./*": "./lib/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudscape-design/build-tools.git"
},
"homepage": "https://cloudscape.design",
"scripts": {
"prepare": "husky",
"lint": "eslint --ignore-path .gitignore --ext js,ts .",
"build": "echo 'build is skipped'",
"test": "vitest run"
},
"dependencies": {
"lodash": "^4.18.1",
"minimatch": "^10.2.4"
},
"peerDependencies": {
"stylelint": "^16.8.1"
},
"devDependencies": {
"@tony.ganchev/eslint-plugin-header": "^3.3.1",
"@types/lodash": "^4.17.21",
"@types/node": "^20.19.24",
"@types/react": "^16.14.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^4.0.6",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^55.0.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"lodash": "^4.18.1",
"prettier": "^3.3.3",
"react": "16.14.0",
"typescript": "^5.0.0",
"vitest": "^4.0.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{scss,css}": [
"stylelint --fix"
]
}
}