-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.28 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
{
"name": "learn-coding",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.2.2",
"easy-peasy": "^4.0.1",
"email-validator": "^2.0.4",
"firebase": "^8.2.6",
"fontsource-roboto": "^4.0.0",
"highlight.js": "^10.6.0",
"markdown-it": "^12.0.4",
"password-validator": "^5.1.1",
"react": "^17.0.1",
"react-ace": "^9.3.0",
"react-confetti": "^6.0.1",
"react-dom": "^17.0.1",
"react-markdown-editor-lite": "^1.2.4",
"react-resizable": "^1.11.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.0",
"web-vitals": "^0.2.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "run-script-os",
"test:win32:msys": "set CI=true react-scripts test --transformIgnorePatterns \"node_modules/(?!(react))/\"",
"test:darwin:linux": "CI=true react-scripts test --transformIgnorePatterns \"node_modules/(?!(react))/\"",
"test:default": "CI=true react-scripts test --transformIgnorePatterns \"node_modules/(?!(react))/\"",
"eject": "react-scripts eject",
"lint": "eslint \"**/*.{js,jsx}\"",
"lint-fix": "eslint --fix \"**/*.{js,jsx}\"",
"format": "npm run lint-fix && prettier --write \"**/*.+(json|css|md)\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run format"
}
},
"lint-staged": {
"*.+(js|jsx)": [
"eslint --fix"
],
"*.+(json|css|md)": [
"prettier --write"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.2.0",
"run-script-os": "^1.1.3"
}
}