forked from nareshbhatia/react-force
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.88 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
{
"name": "root",
"description": "Foundational components and utilities for React applications",
"private": true,
"author": "Naresh Bhatia",
"license": "MIT",
"homepage": "https://github.com/nareshbhatia/react-force",
"repository": {
"type": "git",
"url": "https://github.com/nareshbhatia/react-force.git"
},
"keywords": [
"formik",
"javascript",
"material-ui",
"react",
"typescript"
],
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"build-storybook": "build-storybook -o docs",
"cz-commit": "git-cz",
"del-dist": "lerna run --parallel del-dist",
"format": "lerna run format",
"lerna": "lerna",
"lint": "lerna run --parallel lint",
"prepublish": "lerna run prepublish",
"start": "lerna run start --stream --parallel",
"storybook": "start-storybook -p 6006",
"test": "lerna run test --"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.56",
"@react-force/mock-data": "^1.1.0",
"@storybook/addon-console": "^1.2.2",
"@storybook/addon-essentials": "^6.0.26",
"@storybook/addon-links": "^6.0.26",
"@storybook/addons": "^6.0.26",
"@storybook/react": "^6.0.26",
"@testing-library/dom": "^7.24.5",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/user-event": "12.1.7",
"@types/classnames": "^2.2.10",
"@types/numeral": "^0.0.28",
"@types/react": "^16.9.51",
"@types/react-dom": "^16.9.8",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"babel-eslint": "^10.1.0",
"classnames": "^2.2.6",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-react-app": "^6.0.0-next.98",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-testing-library": "^3.9.0",
"husky": "^4.3.0",
"jest-environment-jsdom-sixteen": "^1.0.3",
"lerna": "^3.22.1",
"numeral": "^2.0.6",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"tsdx": "^0.14.0",
"typescript": "^4.0.3",
"uuid": "^8.3.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
0
]
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}