-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.93 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
{
"name": "color-studies",
"author": "Linda Paiste",
"version": "1.0.0",
"description": "Tools for analyzing colors and color groupings",
"main": "src/index.tsx",
"dependencies": {
"@material-ui/core": "4.11.0",
"@material-ui/icons": "^4.9.1",
"@tensorflow/tfjs": "^3.7.0",
"@testing-library/react": "^11.2.7",
"chroma-js": "2.1.0",
"clsx": "^1.1.1",
"color-convert": "^2.0.1",
"delta-e": "0.0.8",
"hsluv": "0.1.0",
"lodash": "^4.17.19",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0",
"react-table": "^7.7.0",
"recharts": "^2.0.9",
"simple-statistics": "^7.1.0"
},
"devDependencies": {
"@types/chroma-js": "^2.0.0",
"@types/color": "^3.0.1",
"@types/delta-e": "^0.0.0",
"@types/jest": "^26.0.5",
"@types/lodash": "^4.14.157",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.5",
"@types/react-table": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.0",
"react-scripts": "^4.0.3",
"ts-toolbelt": "^9.6.0",
"typescript": "^4.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx",
"prettier": "prettier --write src/**/*",
"tsc": "tsc"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}