-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.48 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
{
"name": "flora11y",
"version": "0.0.1",
"workspaces": [
"packages/*"
],
"description": "Flora11y is a project of WCAG 2.1 AA compliant UI kit",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:hiwelo/flora11y.git"
},
"author": "Damien Senger <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn build:ui-kit",
"build:ui-kit": "lerna run build --scope=@flora11y/ui-kit",
"lint": "npm-run-all lint:*",
"lint:js": "eslint \"packages/**/*.{js,ts,tsx}\" --quiet --fix",
"storybook": "lerna run storybook --scope=@flora11y/ui-kit",
"test": "jest",
"test:coverage": "yarn test --coverage",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^5.3.18",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.3",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.34",
"@types/react-test-renderer": "^16.9.2",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"babel-jest": "^25.4.0",
"babel-loader": "^8.1.0",
"babel-preset-react-optimize": "^1.0.1",
"cz-conventional-changelog": "3.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"fork-ts-checker-webpack-plugin": "^4.1.3",
"husky": "^4.2.5",
"jest": "^25.4.0",
"jest-watch-continue": "^1.1.4",
"jest-watch-lerna-packages": "^1.1.0",
"jest-watch-master": "^1.0.0",
"jest-watch-suspend": "^1.1.2",
"jest-watch-typeahead": "^0.5.0",
"jest-watch-yarn-workspaces": "^1.1.0",
"lerna": "^3.20.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"react-test-renderer": "^16.13.1",
"regenerator-runtime": "^0.13.5",
"rollup": "^2.6.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"ts-jest": "^25.4.0",
"ts-loader": "^7.0.0",
"typescript": "^3.8.3",
"webpack": "^4.42.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged --pattern \"**/*.*(js|ts|tsx)\" --verbose"
}
}
}