-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 844 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 844 Bytes
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
{
"name": "sort-visualizer",
"version": "1.0.0",
"description": "Interactive webpage simulation of sorting algorithms",
"main": "index.js",
"scripts": {
"build": "webpack",
"start": "webpack serve -d eval-cheap-source-map --content-base ./docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/forrestbicker/SortVisualizer.git"
},
"keywords": [],
"author": "Forrest Bicker",
"license": "ISC",
"bugs": {
"url": "https://github.com/forrestbicker/SortVisualizer/issues"
},
"homepage": "https://github.com/forrestbicker/SortVisualizer#readme",
"dependencies": {
"ts-loader": "^8.0.11",
"typescript": "^4.0.5",
"webpack-dev-server": "^3.11.0"
},
"devDependencies": {
"webpack": "^4.46.0",
"webpack-cli": "^4.2.0",
"webpack-dev-middleware": "^3.7.2"
}
}