forked from jarvis394/geekr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.58 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.58 KB
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
{
"name": "habra",
"version": "0.1.0",
"private": true,
"engines": {
"node": "12.x"
},
"homepage": "https://habra.js.org/",
"dependencies": {
"@material-ui/codemod": "^4.5.0",
"@material-ui/core": "^4.9.11",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.50",
"@nteract/mathjax": "^4.0.13",
"axios": "^0.19.2",
"dayjs": "^1.9.4",
"html-react-parser": "^0.10.3",
"is-mobile": "^2.2.2",
"number-to-words-ru": "^2.2.3",
"react": "^16.13.0",
"react-detect-offline": "^2.4.0",
"react-dom": "^16.13.0",
"react-iframe": "^1.8.0",
"react-lazy-load-image-component": "^1.5.0",
"react-medium-image-zoom": "^4.3.1",
"react-redux": "^7.2.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"react-syntax-highlighter": "^12.1.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"serve": "^11.3.2",
"workbox-build": "^5.1.2"
},
"scripts": {
"start": "npm run start:prod",
"start:prod": "serve -s build",
"start:dev": "react-scripts start && cra-append-sw ./src/sw-custom.js --mode dev",
"build": "react-scripts build && cra-append-sw ./src/sw-custom.js",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint ./src/**/*.{ts,tsx} --fix",
"lint:prettier": "prettier --write --config .prettierrc ./src/**/*.{ts,tsx}"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^9.4.1",
"@testing-library/user-event": "^10.0.2",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/node": "^12.12.37",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-lazy-load-image-component": "^1.5.1",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.4",
"@types/react-syntax-highlighter": "^11.0.5",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"cra-append-sw": "^2.7.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.21.2",
"prettier": "^2.0.5",
"typescript": "^4.0.5"
}
}