-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
155 lines (155 loc) · 5.71 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "react-magma",
"version": "2.0.0",
"private": true,
"license": "MIT",
"homepage": "https://react-magma.cengage.com",
"repository": {
"type": "git",
"url": "https://github.com/cengage/react-magma.git"
},
"engines": {
"npm": ">=v10.7.0",
"node": ">=18.20.4"
},
"workspaces": [
"website/*",
"packages/*",
"patterns/*"
],
"scripts": {
"pkg": "manypkg run",
"check:pkgs": "manypkg check",
"fix:pkgs": "manypkg fix",
"upgrade:pkgs": "manypkg upgrade",
"getAlias": "node ./packages/react-magma-dom/scripts/getAlias.js",
"getVersion": "node ./packages/react-magma-dom/scripts/getVersion.js",
"postinstall": "npm run build:lite",
"test": "jest",
"test-watch": "jest --watch",
"test-dom": "lerna run test --scope react-magma-dom -- --watch --coverage=false",
"storybook": "NODE_OPTIONS='--max-old-space-size=4096' start-storybook -p 6006",
"build:docs": "lerna run build --scope react-magma-docs --no-progress",
"build:lite": "lerna run build --ignore react-magma-docs --concurrency=6 --no-progress",
"build": "lerna run build --concurrency=6 --no-progress",
"build:landing": "node website/react-magma-landing/scripts/build.js",
"build:storybook": "build-storybook",
"lint": "lerna run lint",
"develop": "npm run docs",
"docs": "lerna run --scope react-magma-docs develop",
"clean": "lerna exec --scope react-magma-docs 'gatsby clean' && lerna clean --yes && rimraf node_modules",
"clean:docs": "lerna exec --scope react-magma-docs 'gatsby clean' && lerna clean --yes --scope react-magma-docs ",
"cm": "git-cz",
"cm-retry": "git-cz --retry",
"check:spelling": "cspell --config=.cspell.json packages/**/*.{md,ts,js,mdx,tsx,jsx}",
"copy:readme": "copy README.md packages/react-magma-dom",
"publish": "npm run copy:readme && lerna publish",
"prettier": "prettier --write --loglevel warn --ignore-path .eslintignore \"**/src/**/*.{js,jsx,ts,tsx,md,mdx,json,html,css,yml,yaml,graphql}\"",
"plop": "ts-node scripts/plopfile.ts",
"changeset": "changeset add",
"version:pkgs": "changeset version",
"release": "changeset publish",
"version:prerelease": "changeset pre enter next",
"version:exit": "changeset pre exit"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@changesets/changelog-github": "^0.4.0",
"@changesets/cli": "^2.16.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/is-ignored": "^12.1.1",
"@commitlint/load": "^12.1.1",
"@commitlint/parse": "^12.1.1",
"@commitlint/rules": "^12.1.1",
"@commitlint/top-level": "^12.1.1",
"@emotion/babel-plugin": "^11.12.0",
"@emotion/jest": "^11.13.0",
"@manypkg/cli": "^0.18.0",
"@storybook/addon-a11y": "^6.5.10",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-controls": "^6.5.10",
"@storybook/addon-docs": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-measure": "^6.5.10",
"@storybook/addon-toolbars": "^6.5.10",
"@storybook/addons": "^6.5.10",
"@storybook/react": "^6.5.10",
"@testing-library/dom": "^7.31.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^7.0.0",
"@testing-library/user-event": "^13.2.0",
"@types/jest": "^26.0.9",
"@types/lodash": "^4.14.168",
"@types/node": "^12.6.8",
"@types/react": "^16.9.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.2.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-polished": "^1.1.0",
"commitizen": "^4.2.2",
"conventional-changelog-cli": "^2.1.1",
"conventional-changelog-conventionalcommits": "^4.5.0",
"copy": "^0.3.2",
"core-js": "^3.1.4",
"cspell": "^4.1.0",
"cspell-dict-es-es": "^1.0.19",
"cspell-dict-lorem-ipsum": "^1.0.13",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.9.0",
"eslint-config-cengage": "^2.1.3",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-unicorn": "^22.0.0",
"husky": "^6.0.0",
"jest": "^26.4.2",
"jest-axe": "^5.0.1",
"jest-cli": "^26.6.3",
"jest-dom": "^4.0.0",
"jest-extended": "^0.11.5",
"jest-watch-typeahead": "^0.6.1",
"lerna": "^8.1.8",
"lint-staged": "^10.5.4",
"lodash": "^4.17.21",
"microbundle": "^0.13.3",
"node-plop": "^0.26.2",
"object.assign": "^4.1.5",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"regenerator-runtime": "^0.13.7",
"shelljs": "^0.8.4",
"ts-node": "^9.1.1",
"tsdx": "^0.14.1",
"typedoc": "^0.19.2",
"typescript": "^3.9.7",
"webpack-filter-warnings-plugin": "1.2.1"
}
}