This repository has been archived by the owner on Oct 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.02 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
{
"private": true,
"workspaces": [
"packages/*"
],
"resolutions": {
"babel-jest": "24.9.0"
},
"scripts": {
"clean": "yarn clean:build && yarn clean:node_modules",
"clean:build": "rm -rf ./packages/*/build",
"clean:node_modules": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules",
"test": "yarn test:website",
"test:website": "cd packages/website && yarn test && cd -",
"test:e2e": "lerna run cypress:run",
"test:e2e:run": "start-server-and-test start:ci 5000 test:e2e",
"library": "lerna run build-library",
"start": "lerna run start",
"start:ci": "serve packages/website/build --single",
"build": "lerna run build",
"coverage": "lerna run coverage",
"coverage:cleanup": "lerna run coverage:cleanup",
"storybook": "yarn --cwd packages/ui/ storybook"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@types/enzyme": "3.10.9",
"@types/jest": "25.2.3",
"@types/lodash.merge": "4.6.6",
"@types/node": "10.17.60",
"@types/reach__router": "1.3.9",
"@types/react": "16.14.15",
"@types/react-dom": "16.9.14",
"@types/react-helmet": "5.0.18",
"@types/react-redux": "7.1.18",
"@types/react-test-renderer": "16.9.5",
"@types/typography": "0.16.4",
"@types/webpack-env": "1.16.2",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "2.5.1",
"husky": "4.3.8",
"lerna": "3.22.1",
"lint-staged": "10.5.4",
"prettier": "2.4.1",
"serve": "11.3.2",
"start-server-and-test": "1.14.0",
"typescript": "3.9.10"
}
}