-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
67 lines (67 loc) · 2.03 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
60
61
62
63
64
65
66
67
{
"name": "typescript-orm-benchmark",
"version": "0.1.0",
"description": "Example base for typescript orm benchmark",
"engines": {
"node": "10.17.0",
"npm": "6.4.1"
},
"scripts": {
"build": "tsc",
"lint": "tsc --noEmit && eslint \"*/**/*.ts\"",
"lint-diff": "git diff --name-only --cached --relative | grep \\\\.ts$ | xargs eslint",
"postinstall": "npm run build",
"precommit": "npm run lint-diff",
"knex": "node -r dotenv/config ./node_modules/.bin/knex",
"migrate:make": "npm run knex -- migrate:make --knexfile ./dist/knex/config.js",
"migrate": "npm run knex -- migrate:latest --knexfile ./dist/knex/config.js",
"start": "ts-node-dev --respawn --transpileOnly ./server.ts"
},
"cacheDirectories": [
"node_modules"
],
"main": "dist/server.js",
"author": "Emanuel Casco",
"license": "MIT",
"dependencies": {
"autocannon": "^4.3.0",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.17.1",
"knex": "^0.20.0",
"knex-stringcase": "^1.3.0",
"objection": "^1.6.11",
"pg": "^7.4.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.2",
"typeorm": "^0.2.20"
},
"devDependencies": {
"@types/babel-core": "^6.25.6",
"@types/babel-traverse": "^6.25.5",
"@types/bluebird": "^3.5.27",
"@types/body-parser": "^1.17.0",
"@types/express": "^4.17.0",
"@types/node": "^12.6.2",
"@types/pg": "^7.4.14",
"@types/sequelize": "^4.28.3",
"@types/validator": "^10.11.3",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/eslint-plugin-tslint": "^2.6.1",
"@typescript-eslint/parser": "^2.3.1",
"babel": "6.23.0",
"babel-core": "6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^25.0.0",
"babel-preset-env": "^1.7.0",
"dictum.js": "^1.0.0",
"dotenv": "^5.0.1",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^0.14.3",
"sequelize-cli": "^5.5.1",
"ts-node-dev": "1.0.0-pre.40",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
}
}