forked from reimagined/resolve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.85 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
{
"name": "resolve",
"version": "0.9.0",
"repository": "https://github.com/reimagined/resolve.git",
"license": "MIT",
"private": true,
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-export-default": "^7.0.0-alpha.20",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-react-app": "^3.0.0-next.b2fd8db8",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"lint-staged": "^7.0.0",
"oao": "=1.4.1",
"pre-commit": "^1.2.2",
"prettier": "^1.11.1",
"prettier-eslint-cli": "^4.7.1"
},
"workspaces": [
"packages/*",
"packages/bus-adapters/*",
"packages/storage-adapters/*",
"packages/readmodel-adapters/*",
"examples/*"
],
"scripts": {
"clean": "npx oao all \"npx rimraf dist\" --parallel && npx rimraf yarn-error.log && npx oao clean",
"lint": "eslint .",
"lint-staged": "lint-staged",
"prepublish": "npx oao all \"npx rimraf dist\" --parallel && oao run-script prepublish --parallel",
"prettier": "prettier --single-quote --no-semi --write \"**/**.js\"",
"publish": "oao publish -i \"examples/*\" --no-git-commit --no-changelog",
"test": "oao all \"yarn test --color 2>&1\"",
"test:functional": "oao run-script test:functional"
},
"pre-commit": [
"lint-staged",
"lint"
],
"lint-staged": {
"*.{js,css}": [
"prettier --single-quote --no-semi --write",
"git add"
]
}
}