forked from VikashChoudahry/db-performance-benchmarking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "performance-analysis-app",
"version": "1.0.0",
"description": "Performance benchmarking - postgresql vs mysql",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"typeorm:cli": "ts-node ./node_modules/typeorm/cli -f ./ormconfig.ts",
"db:drop": "npm run typeorm:cli schema:drop",
"db:sync": "npm run typeorm:cli schema:sync",
"migration:generate": "typeorm migration:create -n",
"debug": "nodemon --watch ./dist --inspect=0.0.0.0:5001 --nolazy ./dist/index.js",
"start": "node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ajv": "^6.12.3",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"date-fns": "^2.8.1",
"dotenv": "^8.2.0",
"lodash": "^4.17.21",
"mysql2": "^2.1.0",
"nodemon": "^2.0.20",
"pg": "^8.13.1",
"sleep": "^6.3.0",
"typeorm": "^0.3.16",
"uuid": "^7.0.3",
"uuidv4": "^6.0.7"
},
"devDependencies": {
"@types/node": "^12.12.37",
"@types/sleep": "0.0.7",
"ts-node": "^10.9.2",
"ts-sinon": "^1.0.24",
"tslint": "^5.20.1",
"tslint-clean-code": "^0.2.10",
"tslint-config-standard": "^9.0.0",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.7.2"
}
}