-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.69 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.69 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
{
"name": "algorithm-visualizer",
"version": "1.0.0",
"private": true,
"dependencies": {
"@babel/runtime": "^7.17.9",
"@koale/useworker": "^4.0.2",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"clsx": "^1.1.1",
"framer-motion": "^4.1.11",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"sass": "^1.49.9",
"shuffle-array": "^1.0.1",
"typescript": "^4.1.2"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"compile-algorithms": "tsc -p algorithm-tsc.json",
"test": "jest test/ --passWithNoTests",
"tdd": "jest --watch",
"lint": "eslint . --ext .tsx",
"eject": "react-scripts eject",
"new-component": "npx generate-react-cli component"
},
"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": {
"@babel/core": "^7.13.16",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.22",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/shuffle-array": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"generate-react-cli": "^6.0.2",
"prettier": "^2.6.0",
"react-app-rewired": "^2.2.1"
}
}