-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "ddd-ts",
"description": "Build (multi-tenanted) apps with DDD and Typescript with ease",
"version": "0.4.0",
"main": "dist/index.js",
"module": "dist/index.d.ts",
"sideEffects": false,
"author": "Beamery Engineering",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc && rimraf dist/*.test.*",
"test": "jest",
"check-types": "tsc --noEmit",
"lint": "eslint --config .eslintrc.js --ignore-path .gitignore",
"release": "np",
"prepack": "yarn build"
},
"files": [
"dist"
],
"keywords": [
"typescript",
"domain driven design",
"ddd"
],
"repository": {
"type": "git",
"url": "https://github.com/BeameryHQ/ddd-ts"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"fast-equals": "^2.0.3",
"tslib": "^2.4.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^27.3.1",
"jest-extended": "^1.1.0",
"np": "^7.6.0",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}