This repository has been archived by the owner on Aug 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.54 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
74
75
76
77
78
79
{
"name": "@castore/castore",
"description": "🦫 Better DevX for Event Sourcing in TypeScript",
"license": "MIT",
"homepage": "https://github.com/theodo/castore#readme",
"bugs": "https://github.com/theodo/castore/issues",
"repository": "theodo/castore.git",
"keywords": [
"event",
"source",
"store",
"typescript"
],
"workspaces": [
"packages/*",
"demo/*"
],
"scripts": {
"build-all": "nx run-many --target=build --all --parallel=4",
"check-audit": "check-audit --yarn",
"graph": "nx dep-graph",
"info": "nx run-many --target=sls-info --all --parallel=4",
"lint-fix": "yarn linter-base-config --fix",
"linter-base-config": "eslint",
"package": "nx run-many --target=package --all --parallel=4",
"postinstall": "husky install && syncpack format",
"resolve-audit": "resolve-audit --yarn",
"set-packages-versions": "yarn ts-node scripts/setPackagesVersions",
"test": "nx run-many --target=test --all --parallel=4",
"test-affected": "nx affected --target=test",
"test-circular": "yarn depcruise --validate dependency-cruiser.js .",
"test-linter": "nx run-many --target=test-linter --all --parallel=4",
"test-type": "nx run-many --target=test-type --all --parallel=4",
"test-unit": "nx run-many --target=test-unit --all --parallel=4",
"watch": "nx run-many --target=watch --all --parallel=4"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@nrwl/tao": "^14.0.3",
"@nrwl/workspace": "^14.0.3",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"aws-sdk": "^2.1124.0",
"dependency-cruiser": "^11.7.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.4.1",
"lodash": "^4.17.21",
"npm-audit-resolver": "^3.0.0-7",
"nx": "^14.0.3",
"prettier": "^2.6.2",
"syncpack": "^7.0.0",
"ts-jest": "^28.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.6.3"
},
"engines": {
"node": "^14.18.2"
},
"maintainers": [
"Thomas Aribart",
"Charles Géry",
"Juliette Fournier",
"Valentin Beggi"
],
"packageManager": "[email protected]",
"peerDependencies": {
"dynamodb-toolbox": "0.4.0-alpha.2"
}
}