-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "color-contrast",
"version": "1.0.0",
"description": "Tool to check for color contrast using APCA",
"source": "src/public/index.html",
"scripts": {
"start": "parcel",
"build": "parcel build && cp robots.txt dist/robots.txt && cp sitemap.xml dist/sitemap.xml",
"prepare": "patch-package",
"lint": "eslint . --ext .ts | .tsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Shimanta Bhuyan",
"license": "ISC",
"dependencies": {
"bridge-pca": "^0.1.6",
"colorparsley": "^0.1.8",
"hsluv": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@parcel/packager-raw-url": "^2.7.0",
"@parcel/transformer-webmanifest": "^2.7.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"parcel": "^2.7.0",
"patch-package": "^6.4.7",
"postinstall-prepare": "^2.0.0",
"process": "^0.11.10",
"typescript": "^4.8.4"
}
}