forked from david-yz-liu/memory-viz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.74 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
{
"name": "memory-viz-demo",
"version": "0.1.0",
"description": "Demo website for memory-viz",
"scripts": {
"test": "jest --no-cache",
"test-cov": "jest --no-cache --coverage",
"build-dev": "webpack --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"start": "webpack serve --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/david-yz-liu/memory-viz.git"
},
"author": "David Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/david-yz-liu/memory-viz/issues"
},
"private": true,
"homepage": "https://github.com/david-yz-liu/memory-viz#readme",
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.24.7",
"@testing-library/react": "^14.2.1",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.2.18",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.3",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"style-loader": "^3.3.3",
"typescript": "^5.7.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^6.1.9",
"@mui/material": "^6.0.1",
"@picocss/pico": "^1.5.10",
"memory-viz": "*",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.12",
"react-zoom-pan-pinch": "^3.6.1"
}
}