-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
106 lines (106 loc) · 3.39 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
102
103
104
105
106
{
"name": "aia",
"version": "0.1.0",
"private": true,
"homepage": "https://algorithms-in-action.github.io",
"scripts": {
"build": "run-script-os",
"build:default": "export SET NODE_OPTIONS=--openssl-legacy-provider && react-scripts build",
"build:win32": "SET NODE_OPTIONS=--openssl-legacy-provider && react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -b master -d build",
"eject": "react-scripts eject",
"start": "run-script-os",
"start:default": "export SET NODE_OPTIONS=--openssl-legacy-provider && react-scripts start",
"start:win32": "SET NODE_OPTIONS=--openssl-legacy-provider && react-scripts start",
"test": "react-scripts test",
"test-msdrs": "npm test -- ./src/algorithms/controllers/MSDRadixSort.test.js",
"test-srs": "npm test -- ./src/algorithms/controllers/straightRadixSort.test.js",
"test-uf": "npm test -- ./src/algorithms/controllers/unionFind.test.js",
"test-234t": "npm test -- ./src/algorithms/controllers/TTFTree.test.js",
"test-hashinsert": "npm test -- ./src/algorithms/controllers/tests/HashingInsertion.test.js",
"test-hashsearch": "npm test -- ./src/algorithms/controllers/tests/HashingSearch.test.js",
"test-hashdelete": "npm test -- ./src/algorithms/controllers/tests/HashingDeletion.test.js",
"test-avl": "npm test -- ./src/algorithms/controllers/AVLTree.test.js",
"test-url": "npm test -- ./src/algorithms/parameters/helpers/urlHelpers.test.js"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix src/"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!**/node_modules/**",
"!src/index.js",
"!src/serviceWorker.js"
],
"coverageReporters": [
"text"
]
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.3",
"@mui/lab": "latest",
"@mui/material": "^5.14.4",
"@mui/styles": "^5.14.4",
"@popperjs/core": "^2.11.8",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^14.4.3",
"chai": "^5.1.1",
"denque": "^2.0.1",
"framer-motion": "^4.0.0",
"lodash": "^4.17.21",
"nth-check": ">=2.0.1",
"postcss": ">=8.4.31",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^5.0.0",
"react-resize-detector": "^6.6.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.1",
"react-table": "^7.5.0",
"reactjs-popup": "^2.0.5",
"remark-gfm": "^1.0.0",
"remark-toc": "^7.0.0",
"rfdc": "^1.1.4",
"run-script-os": "^1.1.6",
"sass": "^1.50.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@testing-library/react-hooks": "^8.0.1",
"electron": "^31.4.0",
"enzyme": "^3.11.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^4.2.5",
"jest": "^27.5.1",
"lint-staged": "^10.1.3",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"run-script-os": "^1.1.6",
"supertest": "^7.0.0"
}
}