forked from reimagined/resolve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 3.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
80
81
82
83
84
85
86
{
"name": "@resolve-js/resolve",
"version": "0.28.0-alpha.2",
"private": true,
"repository": "https://github.com/reimagined/resolve.git",
"license": "MIT",
"workspaces": {
"packages": [
"packages/core/*",
"packages/modules/*",
"packages/tools/*",
"packages/internal/*",
"packages/runtime/*",
"packages/runtime/adapters/eventstore-adapters/*",
"packages/runtime/adapters/readmodel-adapters/*",
"examples/*",
"examples/shopping-list-tutorial/*",
"packages/modules/*",
"tests",
"website",
"functional-tests",
"functional-tests/app"
]
},
"scripts": {
"clean": "npm run clean:babel && npm run clean:packages && npx rimraf yarn-error.log && npx oao clean",
"clean:babel": "npx oao all \"npx rimraf dist lib es coverage *.db*\" --parallel",
"clean:packages": "npx rimraf .packages",
"lint": "eslint . --ext=.js,.jsx,.ts,.tsx",
"lint:js": "eslint . --ext=.js,.jsx",
"mdis": "mdis",
"prepare": "babel-compile",
"build-packages": "build-packages",
"local-registry": "local-registry",
"prettier": "prettier --write \"**/**.{ts,tsx,js,json,babelrc}\"",
"prettier:check": "prettier --list-different \"**/**.{ts,tsx,js,json,babelrc}\"",
"publish": "npx oao publish -i \"examples/*\" --no-git-commit --no-changelog",
"test": "npx oao all -i \"examples/shopping-list-advanced\" \"yarn test 2>&1\"",
"test:coverage": "npx oao all -i \"examples/shopping-list-advanced\" \"yarn test --coverage --coverageReporters=lcov --color 2>&1\" && npx lcov-result-merger 'packages/**/lcov.info' 'lcov.info'",
"test:e2e": "npx oao run-script -i \"{examples/shopping-list-advanced,examples/shopping-list-tutorial/*}\" test:e2e",
"test:integration": "npx oao all -i \"{examples/**,packages/**,website}\" \"yarn test:integration --color 2>&1\"",
"tutorial-test:e2e": "npx oao run-script -i \"examples/*\" test:e2e",
"test:clean-snapshots": "npx oao all -i \"examples/shopping-list-advanced\" \"yarn test -u --color 2>&1\"",
"workspace-manager": "node packages/internal/workspace-manager/bin/index.js",
"sla:enable": "yarn workspace-manager add \"examples/shopping-list-advanced/*\"",
"sla:disable": "yarn workspace-manager rm \"examples/shopping-list-advanced/*\"",
"validate-lock-file": "node validate-lock-file.js"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-decorators": "7.8.3",
"@babel/preset-env": "7.9.6",
"@babel/preset-react": "7.9.4",
"@babel/preset-typescript": "7.9.0",
"@babel/runtime": "7.9.6",
"@internal/helpers": "0.28.0-alpha.2",
"@testing-library/dom": "7.21.1",
"@typescript-eslint/eslint-plugin": "4.14.0",
"@typescript-eslint/parser": "4.14.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.0.1",
"babel-plugin-transform-inline-environment-variables": "0.4.3",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "2.5.1",
"eslint-plugin-spellcheck": "0.0.16",
"glob": "7.1.6",
"lcov-result-merger": "3.1.0",
"mdis": "0.0.5",
"oao": "1.8.0",
"prettier": "2.1.1",
"rimraf": "3.0.2",
"ts-jest": "26.5.0",
"typescript": "4.1.3"
}
}