-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
{
"name": "cc-checker-chrome-extension",
"version": "1.6.1",
"description": "WCAG accessibility colour contrast checker chrome extension",
"license": "ISC",
"author": {
"name": "Alex Clapperton",
"email": "hi@alexclapperton.co.uk",
"url": "https://alexclapperton.co.uk"
},
"dependencies": {
"@craco/craco": "^7.1.0",
"chroma-js": "2.4.2",
"clsx": "^2.1.1",
"lodash.round": "^4.0.4",
"lodash.throttle": "^4.1.1",
"react": "^18.3.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.3.1",
"react-scripts": "5.0.1",
"typescript": "^4.9.3"
},
"devDependencies": {
"@craco/types": "^7.1.0",
"@types/chroma-js": "^2.4.4",
"@types/chrome": "0.0.268",
"@types/lodash.round": "^4.0.9",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^20.14.9",
"@types/react": "^18.2.20",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.2.7",
"postcss": "^8.4.38",
"postcss-preset-env": "^9.5.14",
"postcss-sort-media-queries": "^5.2.0",
"prettier": "^3.3.2",
"stylelint": "^16.6.1",
"stylelint-order": "^6.0.4",
"stylelint-use-logical": "^2.1.2"
},
"scripts": {
"start": "craco start",
"build": "INLINE_RUNTIME_CHUNK=false craco build",
"format": "prettier \"*/**/*.{js,jsx,ts,tsx,json,md,css,scss}\" --write",
"lint:css": "stylelint \"./**/*.{css,scss}\" --fix",
"lint:ts": "tsc -p tsconfig.json --noEmit",
"test": "craco test",
"eject": "react-scripts eject"
},
"engines": {
"node": ">=20"
},
"volta": {
"node": "20.12.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"overrides": {
"@csstools/media-query-list-parser": "2.1.3"
}
}