-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.37 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
{
"name": "jaorm",
"description": "Just Another ORM",
"version": "0.0.15",
"main": "lib/schema.js",
"author": {
"name": "Andrew Nelson",
"email": "andrew.nelson@iinteractive.com"
},
"repository": {
"type": "git",
"url": "https://github.com/iinteractive/jaorm.git"
},
"license": "MIT",
"dependencies": {
"knex": "^0.19.4",
"pluralize": "^8.0.0",
"json-stringify-safe": "5.0.1"
},
"devDependencies": {
"chai": "4.2.0",
"chalk": "2.4.2",
"eslint": "5.6.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "3.1.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-react": "7.11.1",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"mocha": "^9.1.1",
"mssql": "^7.2.1",
"mysql": "^2.17.1",
"mysql2": "^2.1.0",
"npm-force-resolutions": "0.0.10",
"pg": "7.12.1",
"prettier": "^2.3.2",
"sqlite3": "^5.0.2"
},
"resolutions": {
"node-gyp": "^8"
},
"engines": {
"node": ">= 12.11.1",
"npm": ">= 6.11.3"
},
"scripts": {
"test": "node run_tests.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"preinstall": "npx npm-force-resolutions"
}
},
"lint-staged": {
"linters": {
"*.js": [
"prettier --list-different"
]
}
}
}