-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.39 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
{
"name": "centarius-monorepo",
"version": "0.0.1",
"description": "React SSR Power Pack",
"repository": "https://github.com/rayandrews/centarius",
"homepage": "https://github.com/rayandrews/centarius#readme",
"bugs": "https://github.com/rayandrews/centarius/issues",
"author": {
"name": "Ray Andrew",
"email": "[email protected]",
"url": "https://github.com/rayandrews"
},
"license": "MIT",
"private": true,
"scripts": {
"lint": "prettier-eslint --write \"packages/**/*.js\"",
"precommit": "lint-staged",
"purge:all": "yarn clean:all && rm -Rf node_modules",
"clean:all": "yarn clean:build && yarn clean:monorepo",
"bootstrap": "lerna bootstrap",
"clean:monorepo": "lerna clean",
"build:all": "concurrently \"npm:build-*\"",
"watch:all": "concurrently --kill-others \"npm:watch-*\"",
"clean:build": "rimraf \"+(packages|examples)/*/+(dist|build)\"",
"build-centarius": "lerna run --stream --scope=centarius build",
"watch-centarius": "lerna run --stream --scope=centarius build-dev",
"build-state-hoc": "lerna run --stream --scope=@centarius/state-hoc build",
"watch-state-hoc": "lerna run --stream --scope=@centarius/state-hoc build-dev",
"build-react-loadable": "lerna run --stream --scope=@centarius/react-loadable build",
"watch-react-loadable": "lerna run --stream --scope=@centariusreact-loadable build-dev",
"prepare": "yarn build:all"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"concurrently": "^4.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-flowtype": "^3.9.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"husky": "^2.3.0",
"lerna": "^3.14.1",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"rimraf": "^2.6.3"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/razzle",
"**/razzle/**"
]
},
"lint-staged": {
"linters": {
"**/*.js": [
"prettier-eslint --write",
"git add"
]
},
"ignore": [
"**/dist/*.js",
"**/node_modules/**"
]
}
}