-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "benchviz",
"version": "1.0.0",
"description": "A tool to visualize benchmark results",
"main": "./dist/index.js",
"scripts": {
"test": "jest",
"prestart": "tsc",
"start:dev": "tsc-watch --onSuccess \"node .\"",
"start": "node ."
},
"repository": {
"type": "git",
"url": "https://github.com/BioDataAnalysis/benchviz"
},
"keywords": [
"google",
"benchmark",
"benchviz"
],
"author": "Adrian Castro",
"license": "Apache-2.0",
"devDependencies": {
"@types/express": "^4.17.8",
"tsc-watch": "^4.2.9",
"tslint": "^6.1.3",
"typeorm": "^0.2.26",
"typescript": "^4.0.2"
},
"dependencies": {
"@types/body-parser": "^1.19.0",
"@types/express-session": "^1.17.0",
"@types/milliseconds": "0.0.30",
"@types/passport": "^1.0.4",
"@types/passport-local": "^1.0.33",
"@types/uuid": "^8.3.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"http-status-codes": "^2.1.2",
"milliseconds": "^1.0.3",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"sqlite3": "^5.0.0",
"uuid": "^8.3.0"
}
}