-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
32 lines (32 loc) · 1.01 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
{
"name": "tree-playground",
"version": "1.5.0",
"description": "Tree Visualization Tool for Learning Data Structure and Algorithm.",
"main": "./docs/index.html",
"scripts": {
"test": "echo Welcome to TreePlayground. Hope you enjoy yourself!",
"dev": "webpack --config webpack.config.js --mode development --watch",
"tsc": "tsc --build tsconfig.json --watch",
"build": "tsc --build tsconfig.json && webpack --config webpack.config.js --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hwc0919/TreePlayground.git"
},
"author": "nitromelon",
"license": "MIT",
"bugs": {
"url": "https://github.com/hwc0919/TreePlayground/issues"
},
"homepage": "https://github.com/hwc0919/TreePlayground",
"devDependencies": {
"css-loader": "^3.4.2",
"style-loader": "^1.1.3",
"typescript": "^3.8.3",
"vue": "^2.6.11",
"vue-loader": "^15.9.0",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}