-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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": "database-gateway",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"serve": "nodemon dist/src/index.js",
"lint": "eslint -c .eslintrc.json --ext .ts src migrations",
"prettier-format": "prettier -c .prettierrc.json 'src/**/*.ts' 'migrations/**/*.ts' --write",
"migrate": "knex migrate:latest",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fc5y/database-gateway.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/fc5y/database-gateway/issues"
},
"homepage": "https://github.com/fc5y/database-gateway#readme",
"dependencies": {
"ajv": "^8.6.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"knex": "^0.95.6",
"mysql": "^2.18.1",
"ts-node": "^10.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"nodemon": "^2.0.8",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
}
}