-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.29 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.29 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
69
70
71
72
73
{
"name": "algorithmx-demo",
"version": "1.0.0",
"description": "AlgorithmX online demo.",
"scripts": {
"dev": "npx webpack serve --mode=development --hot",
"prod": "npx webpack serve --mode=production --host 0.0.0.0 --port 9000",
"build": "npx webpack --mode=production",
"format": "npx prettier --write --ignore-path .gitignore .",
"typecheck": "npx tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/algrx/algotihmx-demo.git"
},
"license": "MIT",
"babel": {
"presets": [
"env",
"react"
]
},
"dependencies": {
"@babel/standalone": "7.12.9",
"@fortawesome/fontawesome-svg-core": "1.2.32",
"@fortawesome/free-brands-svg-icons": "5.15.1",
"@fortawesome/free-regular-svg-icons": "5.15.1",
"@fortawesome/free-solid-svg-icons": "5.15.1",
"@fortawesome/react-fontawesome": "0.1.13",
"@types/react-redux": "7.1.11",
"algorithmx": "^2.0.1",
"brace": "0.11.1",
"jsnetworkx": "0.3.4",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-redux": "7.2.2",
"react-split": "2.0.9",
"redux": "4.0.5"
},
"devDependencies": {
"@types/mini-css-extract-plugin": "1.2.1",
"@types/node": "14.14.10",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/webpack-dev-server": "3.11.1",
"@types/webpack-merge-and-include-globally": "2.1.0",
"css-loader": "5.0.1",
"file-loader": "6.2.0",
"html-webpack-plugin": "4.5.0",
"husky": "4.3.0",
"mini-css-extract-plugin": "1.3.1",
"node-sass": "5.0.0",
"prettier": "2.2.0",
"pretty-quick": "3.1.0",
"raw-loader": "4.0.2",
"sass-loader": "10.1.0",
"style-loader": "2.0.0",
"ts-loader": "8.0.11",
"ts-node": "9.0.0",
"typescript": "4.1.2",
"url-loader": "4.1.1",
"webpack": "5.8.0",
"webpack-cli": "4.2.0",
"webpack-dev-server": "3.11.0",
"webpack-merge": "5.4.0",
"webpack-merge-and-include-globally": "2.1.26"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}