-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.76 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.76 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "query-language",
"version": "1.0.1",
"description": "Query Language",
"main": "main/index.js",
"scripts": {
"format": "npx prettier --write .",
"test": "jasmine --config=jasmine.json",
"coverage": "nyc npm run test && nyc report --reporter=html",
"generate-types": "node ./src/lib/ORM/scripts/generate-types.js",
"dev": "nodemon src/index.ts",
"tsc": "tsc -p ./",
"doc": "typedoc --tsconfig tsconfig.json",
"prepare": "husky install"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"mssql": "^9.0.1",
"mysql": "^2.18.1",
"oracledb": "^5.5.0",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"shelljs": "^0.8.5",
"sql.js": "^1.8.0",
"sqlite3": "^5.1.4",
"typeorm-model-generator": "^0.4.6",
"uuidv4": "^6.2.6"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/express": "^4.17.11",
"@types/jasmine": "^4.3.1",
"@types/lodash": "^4.14.168",
"@types/node": "^14.18.36",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"ava": "^5.1.0",
"chevrotain": "^10.4.2",
"eslint": "^7.8.0",
"husky": "^8.0.3",
"jasmine": "^4.5.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.4.0",
"lint-staged": "^13.1.0",
"lodash": "^4.17.21",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"ts-loader": "^9.4.2",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"typedoc": "^0.23.22",
"typeorm": "^0.3.11",
"typescript": "4.9"
},
"files": [
"main",
"!**/*.json",
"README.md"
],
"ava": {
"failFast": true,
"timeout": "60s",
"typescript": {
"rewritePaths": {
"src/": "build/main/"
}
},
"files": [
"!build/module/**"
]
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}