forked from JedWatson/react-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 4.24 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
{
"name": "@react-select/monorepo",
"private": true,
"version": "1.0.0",
"description": "A Select control built with and for ReactJS",
"author": "Jed Watson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JedWatson/react-select.git"
},
"dependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.12.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.12.1",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.12.0",
"@changesets/cli": "^2.17.0",
"@changesets/get-github-info": "^0.5.0",
"@emotion/babel-plugin": "^11.10.2",
"@emotion/jest": "^11.1.0",
"@manypkg/cli": "^0.19.2",
"@preconstruct/cli": "^2.6.2",
"@testing-library/dom": "8.19.0",
"@testing-library/jest-dom": "5.1.1",
"@testing-library/react": "12.1.4",
"@testing-library/user-event": "^10.0.0",
"@types/copy-webpack-plugin": "^5.0.2",
"@types/html-webpack-plugin": "^3.2.4",
"@types/jest-in-case": "^1.0.6",
"@types/node": "^16.11.68",
"@types/pretty-proptypes": "^1.1.0",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"@types/react-transition-group": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.2.5",
"concurrently": "^7.5.0",
"copy-webpack-plugin": "^5.0.3",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"css-loader": "^0.28.7",
"cypress": "^5.0.0",
"dotenv": "^16.0.3",
"eslint": "^7.18.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^1.1.0",
"jest": "^25.1.0",
"jest-in-case": "^1.0.2",
"prettier": "^2.2.1",
"style-loader": "^0.23.1",
"typescript": "^4.1.3",
"user-agent-data-types": "^0.4.2"
},
"scripts": {
"build": "preconstruct build",
"watch": "preconstruct watch",
"coveralls": "cat coverage/lcov.info | coveralls",
"prettify": "prettier --write .",
"prettier:check": "prettier --check .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"start": "cd docs && yarn start",
"start:test": "cd docs && yarn start:test",
"build:docs": "yarn --cwd=docs build:docs && yarn --cwd=storybook build && cp -r storybook/storybook-static docs/dist/storybook",
"fresh": "rm -rf node_modules && yarn install",
"test": "npm run test:jest && npm run test:cypress",
"test:jest": "jest --coverage",
"e2e": "concurrently --kill-others --success=first --names 'SERVER,E2E' 'yarn start:test' 'yarn test:cypress'",
"type-check": "tsc --build packages/react-select/tsconfig.json && tsc --build packages/react-select/src/__tests__/tsconfig.json && tsc --build docs/tsconfig.json && tsc --build cypress/tsconfig.json",
"precommit": "yarn run type-check",
"postinstall": "preconstruct dev && manypkg check",
"test:cypress": "yarn test:cypress:chrome && yarn test:cypress:firefox",
"test:cypress:chrome": "cypress run --browser chrome",
"test:cypress:firefox": "cypress run --browser firefox",
"test:cypress:watch": "node ./node_modules/.bin/cypress open",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "yarn build && changeset publish"
},
"files": [
"dist",
"src"
],
"keywords": [
"combobox",
"form",
"input",
"multiselect",
"react",
"react-component",
"select",
"ui"
],
"jest": {
"modulePathIgnorePatterns": [
"./node_modules"
],
"testRegex": "src/*(/(__tests?__/)([^_].*/)*?[^_][^/]*?\\.(test|spec)?\\.(ts|js)x?)$",
"setupFilesAfterEnv": [
"./test-setup.js"
],
"snapshotSerializers": [
"@emotion/jest/serializer"
]
},
"workspaces": [
"packages/*",
"docs",
"storybook"
],
"preconstruct": {
"packages": [
"packages/*",
"docs/generate-magical-types"
],
"exports": {
"importConditionDefaultExport": "default"
}
},
"resolutions": {
"csstype": "^3.0.2"
}
}