-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 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
33
34
35
36
37
38
39
{
"name": "tgview",
"private": true,
"version": "0.2.3",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "MIT",
"scripts": {
"build": "tsc && webpack --mode production",
"install": "tsc",
"clean": "rm -rf lib/ dist/",
"dev": "concurrently --kill-others \"yarn tsc --watch\" \"yarn webpack-dev-server\"",
"lint": "tslint -p tsconfig.json"
},
"devDependencies": {
"concurrently": "^5.3.0",
"css-loader": "^4.3.0",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"source-map-loader": "^1.1.0",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.4",
"tslint": "^6.1.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@types/jquery": "^3.3.29",
"@types/jqueryui": "^1.12.7",
"@types/jstree": "^3.3.37",
"@types/vis": "^4.21.10",
"jquery": "^3.3.1",
"jqueryui": "^1.11.1",
"jstree": "^3.3.7",
"typescript": "^4.0.3",
"vis": "~4.18.1"
}
}