-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
70 lines (70 loc) · 2.17 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
{
"name": "@castore/castore",
"description": "Making Event Sourcing easy 😎",
"license": "MIT",
"homepage": "https://github.com/castore-dev/castore#readme",
"bugs": "https://github.com/castore-dev/castore/issues",
"repository": "castore-dev/castore.git",
"keywords": [
"event",
"source",
"store",
"typescript"
],
"workspaces": [
"packages/*",
"demo/*",
"docs"
],
"scripts": {
"check-audit": "check-audit --yarn",
"graph": "nx dep-graph",
"package": "nx run-many --target=package --all --parallel=4",
"postinstall": "husky install && syncpack format",
"resolve-audit": "resolve-audit --yarn",
"set-packages-versions": "ts-node scripts/setPackagesVersions",
"test": "nx run-many --target=test --all",
"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/node": "*",
"@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-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"npm-audit-resolver": "^3.0.0-7",
"nx": "^14.0.3",
"prettier": "^2.6.2",
"syncpack": "^7.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.6.3"
},
"engines": {
"node": "^16.14.0"
},
"maintainers": [
"Thomas Aribart",
"Charles Géry",
"Juliette Fournier",
"Valentin Beggi",
"Stanislas Hannebelle"
],
"packageManager": "yarn@3.2.1"
}