-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.71 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
68
69
70
71
72
73
{
"name": "@node-ddd/persistence",
"version": "0.0.12",
"description": "Persistence layer for DDD applications",
"repository": {
"type": "git",
"url": "git+https://github.com/node-ddd/persistence.git"
},
"author": "Samuel Briole",
"license": "MIT",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/cjs/index.d.ts",
"files": [
"lib"
],
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
}
},
"scripts": {
"lint": "eslint ./src",
"test": "jest",
"clean": "rimraf ./lib",
"prebuild": "yarn clean",
"build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
"prepublishOnly": "yarn clean && yarn build"
},
"peerDependencies": {
"fp-ts": "^2.11.5",
"knex": "^0.95.15",
"typeorm": "^0.2"
},
"peerDependenciesMeta": {
"typeorm": {
"optional": true
},
"fp-ts": {
"optional": true
},
"knex": {
"optional": true
}
},
"dependencies": {
"lodash.clonedeep": "^4.5.0"
},
"devDependencies": {
"@relmify/jest-fp-ts": "^1.1.1",
"@types/jest": "^27.0.3",
"@types/lodash.clonedeep": "^4.5.6",
"@types/node": "^17.0.4",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"fp-ts": "^2.11.5",
"io-ts": "^2.2.16",
"jest": "^27.4.5",
"knex": "^0.95.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"typeorm": "^0.2.41",
"typescript": "^4.5.4",
"uuid": "^8.3.2"
}
}