forked from GetStream/website-react-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (42 loc) · 2.05 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
{
"name": "website-react-examples",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:GetStream/website-react-examples.git",
"author": "Stream",
"license": "MIT",
"scripts": {
"build:cs": "cd customer-support && yarn && yarn build && rm -rf ../docs/customer-support/* && mv build/* ../docs/customer-support",
"build:sm": "cd social-messenger && yarn && yarn build && rm -rf ../docs/social-messenger/* && mv build/* ../docs/social-messenger",
"build:sm-ts": "cd social-messenger-ts && yarn && yarn build && rm -rf ../docs/social-messenger-ts/* && mv build/* ../docs/social-messenger-ts",
"build:ve": "cd virtual-event && yarn && yarn build && rm -rf ../docs/virtual-event/* && mv build/* ../docs/virtual-event",
"build:t": "cd team && yarn && yarn build && rm -rf ../docs/team/* && mv build/* ../docs/team",
"build:t-ts": "cd team-ts && yarn && yarn build && rm -rf ../docs/team-ts/* && mv build/* ../docs/team-ts",
"build:gl": "cd gaming-livestream && yarn && yarn build && rm -rf ../docs/gaming-livestream/* && mv build/* ../docs/gaming-livestream",
"build:js": "yarn build:cs && yarn build:sm && yarn build:ve && yarn build:t && yarn build:gl",
"build:ts": "yarn build:sm-ts && yarn build:t-ts",
"lint": "eslint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"devDependencies": {
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jest-dom": "^3.2.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-sonarjs": "^0.5.0",
"prettier": "^2.0.5"
}
}