-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
70 lines (70 loc) · 2.23 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
{
"name": "@cloudscape-design/theming-mono",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/cloudscape-design/theming-core.git"
},
"homepage": "https://cloudscape.design",
"scripts": {
"lint": "eslint --ignore-path .gitignore --ext ts .",
"test:build": "vitest run -c vitest.config.build.mjs",
"test:browser": "vitest run -c vitest.config.browser.mjs",
"test:integ": "vitest run -c vitest.config.integ.mjs",
"pretest": "tsc -p tsconfig.test.json",
"test": "npm run test:build && npm run test:browser && npm run test:integ",
"clean": "rm -rf lib coverage",
"build": "tsc -b && node scripts/generate-package",
"preinstall": "./scripts/unlock-packages.js",
"prepublishOnly": "npm run clean && npm run build",
"prepare": "husky install"
},
"files": [],
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@cloudscape-design/browser-test-tools": "^3.0.2",
"@cloudscape-design/component-toolkit": "^1.0.0-beta.53",
"@tsconfig/node16": "^1.0.3",
"@types/loader-utils": "^2.0.3",
"@types/lodash": "^4.14.183",
"@types/node": "^18.19.23",
"@types/postcss-inline-svg": "^5.0.0",
"@types/rimraf": "^3.0.2",
"@types/string-hash": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"@vitest/coverage-v8": "^3.0.5",
"autoprefixer": "^10.4.8",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^41.0.1",
"glob": "^7.2.3",
"husky": "^7.0.4",
"jsdom": "^26.0.0",
"jsonschema": "^1.4.1",
"lint-staged": "^12.5.0",
"loader-utils": "^3.2.1",
"lodash": "^4.17.21",
"merge": "^2.1.1",
"postcss": "^8.4.31",
"postcss-discard-empty": "^6.0.0",
"postcss-inline-svg": "^6.0.0",
"postcss-modules": "^6.0.0",
"prettier": "^2.7.1",
"sass": "^1.77.8",
"string-hash": "^1.1.3",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"vitest": "^3.0.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"package-lock.json": [
"./scripts/unlock-packages.js"
]
}
}