-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 3.13 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@hypothesis/frontend-shared",
"version": "8.15.0",
"description": "Shared components, styles and utilities for Hypothesis projects",
"license": "BSD-2-Clause",
"repository": "hypothesis/frontend-shared",
"devDependencies": {
"@babel/cli": "^7.1.6",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.18.6",
"@hypothesis/frontend-build": "^3.0.0",
"@hypothesis/frontend-testing": "^1.4.0",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-dynamic-import-vars": "^2.1.2",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-virtual": "^3.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"autoprefixer": "^10.3.7",
"axe-core": "^4.0.0",
"babel-plugin-istanbul": "^7.0.0",
"babel-plugin-mockable-imports": "^2.0.1",
"chai": "^5.0.0",
"chalk": "^5.0.1",
"classnames": "^2.2.6",
"enzyme": "^3.8.0",
"enzyme-adapter-preact-pure": "^4.0.1",
"eslint": "^9.12.0",
"eslint-config-hypothesis": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0",
"express": "^4.17.1",
"fancy-log": "^2.0.0",
"globals": "^15.11.0",
"gulp": "^5.0.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-mocha": "^2.0.0",
"karma-mocha-reporter": "^2.0.4",
"karma-source-map-support": "^1.4.0",
"mocha": "11.0.1",
"mustache": "^4.2.0",
"postcss": "^8.3.9",
"preact": "^10.25.1",
"prettier": "^3.0.0",
"rollup": "^4.0.2",
"rollup-plugin-string": "^3.0.0",
"sass": "^1.43.2",
"sinon": "^19.0.2",
"svgo": "^3.0.0",
"tailwindcss": "3.4.16",
"typescript": "^5.0.2",
"typescript-eslint": "^8.10.0",
"yalc": "^1.0.0-pre.50"
},
"peerDependencies": {
"preact": "^10.25.1"
},
"scripts": {
"build-lib": "babel src/ --out-dir lib/ --extensions '.js,.ts,.tsx' --source-maps --ignore '**/test' --ignore '**/karma.config.js'",
"build": "yarn build-lib && tsc --build src/tsconfig.json",
"build-pattern-lib": "yarn gulp bundle-css && yarn rollup -c rollup.config.js",
"typecheck": "tsc --build src/tsconfig.json",
"lint": "eslint --cache .",
"checkformatting": "prettier --cache --check '**/*.{js,scss,ts,tsx,md}'",
"format": "prettier --cache --list-different --write '**/*.{js,scss,ts,tsx,md}'",
"test": "gulp test",
"push": "yarn build && yalc push"
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true,
"importOrder": [
"^[./]"
],
"importOrderSeparation": true,
"plugins": [
"@trivago/prettier-plugin-sort-imports"
]
},
"files": [
"lib",
"styles",
"images"
],
"type": "module",
"main": "./lib/index.js",
"browserslist": "chrome 70, firefox 70, safari 11.1",
"dependencies": {
"highlight.js": "^11.6.0",
"wouter-preact": "^3.0.0"
},
"packageManager": "[email protected]"
}