-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "algorithms-visualization-web",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "webpack serve",
"build": "webpack --mode production",
"build_wasm": "bash scripts/build_wasm.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/funcodingbootcamp/algorithms-visualization-web.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/funcodingbootcamp/algorithms-visualization-web/issues"
},
"homepage": "https://github.com/funcodingbootcamp/algorithms-visualization-web#readme",
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/jest": "^29.2.4",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"scichart": "^3.2.491"
}
}