-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 2.39 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "graphPlayground",
"version": "2.0.0",
"description": "A single-page webapp to build graphs and run algorithms on them with no server-side components.",
"repository": {
"type": "git",
"url": "git+https://github.com/MikeDombo/graphPlayground.git"
},
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"deploy": "git add -f dist && git commit -m \"GitHub pages update\" && git subtree push --prefix dist origin gh-pages && git reset --soft HEAD~2 && git rm -r --cached dist",
"webpackStats": "webpack --json --mode production | webpack-bundle-size-analyzer",
"sonarqube": "c:\\sonar\\sonar-scanner-3.0.3\\bin\\sonar-scanner.bat",
"test": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} mocha -r ts-node/register/transpile-only --recursive \"./test/**/*Test.ts\"",
"test-coverage": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} nyc --extension .ts mocha -r ts-node/register/transpile-only --recursive \"./test/**/*Test.ts\""
},
"keywords": [],
"author": "Michael Dombrowski",
"bugs": {
"url": "https://github.com/MikeDombo/graphPlayground/issues"
},
"homepage": "https://github.com/MikeDombo/graphPlayground#readme",
"devDependencies": {
"@types/bootstrap": "^4.3.2",
"@types/chai": "^4.2.11",
"@types/jquery": "3.3.34",
"@types/mocha": "^10.0.1",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.1.0",
"browser-sync": "^2.27.11",
"browser-sync-webpack-plugin": "^2.3.0",
"chai": "^4.2.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"html-webpack-plugin": "^5.5.0",
"ignore-loader": "^0.1.2",
"mocha": "^10.2.0",
"nyc": "^15.0.1",
"ts-loader": "^9.0.0",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"worker-loader": "^3.0.8"
},
"dependencies": {
"bootstrap": "^4.4.1",
"immutable": "^4.0.0-rc.12",
"jquery": "^3.4.1",
"popper.js": "^1.16.1",
"randomcolor": "^0.5.4",
"vis-data": "^7.1.4",
"vis-network": "^9.1.2"
}
}