-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.18 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
{
"name": "firefly",
"private": true,
"workspaces": [
"packages/*",
"packages/firebase-functions/functions"
],
"engines": {
"node": "10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"installConfig": {
"pnp": false
},
"lint-staged": {
"*.{js,json}": [
"prettier-standard",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.1.0",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.3",
"lerna": "^3.16.4",
"lint-staged": "^9.2.5",
"npm-run-all": "^4.1.5",
"prettier-eslint": "^9.0.0",
"prettier-standard": "^11.0.0",
"shelljs": "^0.8.3",
"standard": "^14.1.0",
"stylelint": "^10.1.0",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^3.0.0",
"stylelint-processor-styled-components": "^1.8.0"
},
"scripts": {
"build": "run-p build:**",
"build:client": "yarn workspace client build",
"build:functions": "yarn workspace functions build",
"heroku-postbuild": "echo Skip builds on Heroku.",
"clean": "shjs ./scripts/clean.js && rm -rf node_modules .pnp .pnp.js",
"commit": "shjs ./scripts/commit.js",
"flow": "flow",
"flow coverage": "flow coverage",
"flow start": "flow start",
"flow status": "flow status",
"flow stop": "flow stop",
"lint": "shjs ./scripts/lint.js",
"lint:scss": "stylelint packages/client/src/**/*.scss --config packages/client/src/layouts/scss/.stylelintrc --fix",
"lint:style": "run-p lint:styled lint:scss",
"lint:styled": "stylelint packages/client/src/**/*.js",
"start": "run-p start:**",
"start:client": "yarn workspace client start",
"start:functions": "yarn workspace functions start"
}
}