-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.81 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
101
{
"name": "website",
"version": "0.1.2",
"private": true,
"homepage": "https://michaelkramer.github.io/website",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"loop-test": "craco test src/loopTests/*.test.tsx --verbose --runInBand",
"lint": "eslint --format stylish --ext .tsx --ext .ts src",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"clean": "rm -r build",
"build-notes": "ts-node --project tsconfig-build-notes.json md-notes/index.ts",
"version-major": "bash dev-ops/version major",
"version-minor": "bash dev-ops/version minor",
"version-patch": "bash dev-ops/version patch"
},
"eslintConfig": {
"plugins": [
"@michaelkramer/eslint-plugin-facepalm"
],
"extends": "react-app",
"rules": {
"react/self-closing-comp": [
"error",
{
"component": true,
"html": true
}
],
"@michaelkramer/facepalm/no-comment-console": "warn",
"@michaelkramer/facepalm/no-useless-comments": "warn",
"no-console": "warn",
"no-restricted-syntax": [
"error",
{
"selector": "CallExpression[callee.object.name='console'][callee.property.name!=/^(log|warn|error|info|trace)$/]",
"message": "Unexpected property on console object was called"
}
]
},
"overrides": [
{
"files": [
"**/*.ts",
"**/*.tsx"
]
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/material": "^5.8.6",
"@reduxjs/toolkit": "^1.8.2",
"axios": "^0.27.2",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-icons": "^4.4.0",
"react-markdown": "^8.0.3",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-syntax-highlighter": "^15.5.0",
"rxjs": "^7.5.5",
"typescript": "~4.7.4"
},
"devDependencies": {
"@michaelkramer/eslint-plugin-facepalm": "^1.1.4",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^28.1.3",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-icons": "^3.0.0",
"@types/react-router-dom": "^5.3.3",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"ts-proto": "^1.115.5",
"ts-protoc-gen": "^0.15.0"
}
}