-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
{
"name": "resistor-color-calculator",
"version": "0.1.0",
"private": true,
"homepage": "https://raajnadar.github.io/resistor-color-calculator/",
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/material": "^5.10.5",
"@mui/styles": "^5.10.3",
"gh-pages": "^2.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "yarn lint && yarn tsc && yarn build",
"deploy": "gh-pages -d build --repo https://github.com/raajnadar/resistor-color-calculator.git",
"lint": "eslint --ext .ts,.tsx .",
"typescript": "yarn tsc"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.3",
"@types/node": "^18.7.17",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"typescript": "^4.0.0"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/no-explicit-any": "off"
}
},
"prettier": {
"semi": false,
"tabWidth": 2,
"singleQuote": true,
"useTabs": true,
"jsxBracketSameLine": true,
"proseWrap": "never",
"trailingComma": "none"
}
}