-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 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
{
"name": "data-access-patterns",
"version": "1.0.0",
"description": "Enterprise Application Architecture: Data Access Patterns examples.",
"engines": {
"node": "^16.13.1",
"npm": "^8.2.0"
},
"main": "src/Main.ts",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"start:row-data-gateway": "npm run build && node --require dotenv/config dist/RowDataGateway",
"start:data-mapper": "npm run build && node --require dotenv/config dist/DataMapper",
"test": "jest --collectCoverage",
"prepare": "[ ${CI} ] || husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/HenriqueSilverio/data-access-patterns.git"
},
"author": "Henrique Silvério",
"license": "GPL-3.0",
"dependencies": {
"better-sqlite3": "^9.4.3",
"require-env": "^0.2.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.2.2",
"@tsconfig/node16": "^16.1.3",
"@types/better-sqlite3": "^7.6.2",
"@types/jest": "^28.1.7",
"@types/node": "^22.5.2",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.17.0",
"dotenv": "^16.4.5",
"eslint": "^9.9.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"husky": "^9.1.6",
"jest": "^28.1.3",
"lint-staged": "^15.2.7",
"ts-jest": "^28.0.8",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.4"
}
}