-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.49 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
{
"name": "claymemory",
"version": "0.1.0",
"homepage": "https://luccahellriegel.github.io/ClayMemory",
"private": true,
"devDependencies": {
"@testing-library/react": "^9.5.0",
"@types/react-pdf": "4.0.5",
"@types/react-redux": "^7.1.9",
"@types/react-window": "^1.8.2",
"@types/throttle-debounce": "^2.1.0",
"cypress": "^5.2.0",
"cypress-file-upload": "^4.1.1",
"dependency-cruiser": "^9.12.0"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@reduxjs/toolkit": "^1.4.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.54",
"@types/react": "^16.9.48",
"@types/react-dom": "^16.9.8",
"gh-pages": "^3.1.0",
"js-file-download": "^0.4.12",
"material-ui-search-bar": "^1.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-draggable": "^4.4.3",
"react-pdf": "git+https://github.com/LuccaHellriegel/react-pdf.git",
"react-redux": "^7.2.0",
"react-scripts": "3.4.1",
"react-sizeme": "^2.6.12",
"react-window": "^1.8.5",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"redux-undo": "^1.0.1",
"reselect": "^4.0.0",
"source-map-explorer": "^2.5.0",
"throttle-debounce": "^2.3.0",
"typeface-roboto": "0.0.75",
"typescript": "^3.9.6",
"xhr2": "^0.2.0"
},
"scripts": {
"cypress-ci": "./node_modules/.bin/cypress run",
"cypress": "./node_modules/.bin/cypress open",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"build": "react-scripts build",
"test-ci": "CI=true npm run test",
"test": "react-scripts test",
"eject": "react-scripts eject",
"graph": "npx depcruise --config ./.dependency-cruiser.js --output-type dot src/index.tsx | dot -T svg > dependency-graph.svg",
"archi": "npx depcruise --config ./.dependency-cruiser.js --output-type archi src/index.tsx | dot -T svg > module-dependency-graph.svg",
"deps": "npx depcruise --config ./.dependency-cruiser.js src",
"viz": "npm run graph & npm run archi"
},
"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"
]
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/cypress/"
]
}
}