-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 885 Bytes
/
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
{
"name": "dynamic-graph-generator",
"version": "1.0.0",
"description": "Random graph generator for small scale graphs",
"main": "index.ts",
"scripts": {
"start": "ts-node index.ts",
"start-server": "ts-node server.ts",
"collect": "ts-node scripts/collectData.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lilithkarapetyan/dynamic-graph-generator.git"
},
"author": "lilithkarapetyan",
"license": "ISC",
"bugs": {
"url": "https://github.com/lilithkarapetyan/dynamic-graph-generator/issues"
},
"homepage": "https://github.com/lilithkarapetyan/dynamic-graph-generator#readme",
"dependencies": {
"express": "^4.17.2",
"unique-names-generator": "^4.7.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.21",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}