-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.95 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
{
"name": "@cloudscape-design/test-utils-monorepo",
"version": "1.0.0",
"license": "Apache-2.0",
"files": [],
"repository": {
"type": "git",
"url": "git+https://github.com/cloudscape-design/test-utils.git"
},
"homepage": "https://cloudscape.design",
"scripts": {
"lint": "eslint --ignore-path .gitignore --ext js,ts .",
"build": "tsc -b && node scripts/generate-package.js && node scripts/generate-doc.js && node scripts/generate-exports.js && node scripts/build-mocks.js",
"postbuild": "cp NOTICE README.md LICENSE lib/core && cp NOTICE README.md LICENSE lib/converter",
"test": "vitest run",
"posttest": "node ./scripts/verify-typescript.js",
"prepare": "husky install"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-syntax-decorators": "^7.16.0",
"@babel/plugin-syntax-typescript": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@cloudscape-design/documenter": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"css-selector-tokenizer": "^0.8.0",
"css.escape": "^1.5.1",
"glob": "^7.2.0",
"lodash": "^4.17.21",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/babel__core": "^7.1.16",
"@types/glob": "^8.1.0",
"@types/jest": "^28.1.3",
"@types/lodash": "^4.17.13",
"@types/node": "^18.0.0",
"@types/react-dom": "^18.0.10",
"@vitest/coverage-istanbul": "^1.2.2",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^43.0.1",
"husky": "^8.0.1",
"lint-staged": "^15.2.9",
"prettier": "^2.8.0",
"typescript": "^4.7.4",
"vitest": "^1.2.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"package-lock.json": [
"node ./scripts/unlock-package-lock.js"
]
}
}