-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
{
"name": "data-structures-in-javascript",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^11.2.3",
"@testing-library/user-event": "^12.6.0",
"@tippyjs/react": "^4.2.5",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.3.1",
"dompurify": "^2.2.7",
"highlight.js": "^10.5.0",
"js-beautify": "^1.13.5",
"marked": "^2.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-error-boundary": "^3.1.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-toastify": "^6.2.0",
"styled-components": "^5.2.3",
"tippy.js": "^6.3.1",
"web-vitals": "^0.2.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && cp _headers build && npm run verify-google-search-console",
"build-vercel": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"add-structure": "node ./scripts/add-new-data-structure.js",
"verify-google-search-console": "node ./scripts/google-search-verification.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/dompurify": "^2.2.2",
"@types/highlight.js": "^10.1.0",
"@types/js-beautify": "^1.13.1",
"@types/react-dom": "^17.0.8",
"@types/marked": "^2.0.3",
"@types/react": "^17.0.11",
"@types/react-router-dom": "^5.1.7",
"@types/styled-components": "^5.1.10",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.4"
}
}