-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
117 lines (117 loc) · 3.61 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"build:libs": "lerna run build --stream",
"build:storybook": "build-storybook -s .storybook/assets",
"build": "run-s build:libs build:storybook",
"test": "jest",
"coverage": "jest --coverage",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "lerna run lint --stream",
"watch:css": "lerna run --scope @useblu/ocean-core build:watch",
"watch:storybook": "start-storybook -p 6006 -s .storybook/assets",
"storybook": "npm-run-all build:libs --parallel watch:*",
"predeploy:storybook": "lerna run build --stream",
"deploy:storybook": "storybook-to-ghpages -s build:storybook",
"cm": "cz",
"version": "prettier --write '**/{CHANGELOG.md,lerna.json}'",
"prepublishOnly": "ts-node ./scripts/copy-files.ts"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^17.0.3",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.0.0",
"@storybook/addon-a11y": "^6.4.19",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/addons": "^6.4.19",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.4.19",
"@storybook/storybook-deployer": "^2.8.10",
"@storybook/theming": "^6.4.19",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^12.0.0",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.3",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"babel-loader": "^8.2.2",
"chromatic": "^6.0.0",
"commitizen": "^4.2.4",
"css-loader": "^6.2.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-jest-dom": "^3.8.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-storybook": "^0.6.6",
"eslint-plugin-testing-library": "^4.6.0",
"husky": "^7.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"open-cli": "^7.0.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"react-router-dom": "^6.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.52.4",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.30.0",
"sass": "^1.32.8",
"sass-loader": "^12.1.0",
"style-loader": "^3.0.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.2.3",
"yup": "^0.32.11"
},
"engines": {
"node": ">=14.13.0",
"yarn": ">=1.22.0"
},
"prettier": {
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"storybook-deployer": {
"commitMessage": "Deploy Storybook [skip ci]"
},
"dependencies": {
"ansi-regex": "^6.0.1",
"glob-parent": "^5.1.2",
"immer": "^9.0.6",
"node-sass": "^7.0.0",
"trim": "^1.0.1"
}
}