-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
123 lines (123 loc) · 3.59 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
{
"name": "@nextjs-tui-date-picker/monorepo",
"private": true,
"version": "1.5.1",
"description": "A tui date picker control built with and for Next.js",
"author": "in-ch",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/in-ch/nextjs-tui-date-picker.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.26.1",
"@changesets/get-github-info": "^0.5.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": "^29.5.1",
"@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": "^29.5.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",
"fs": "^0.0.1-security",
"gh-pages": "^1.1.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.5.0",
"jest-in-case": "^1.0.2",
"prettier": "^2.2.1",
"style-loader": "^0.23.1",
"ts-jest": "^29.0.3",
"tui-date-picker": "^4.3.3",
"typescript": "^4.1.3"
},
"scripts": {
"build": "preconstruct build",
"watch": "preconstruct watch",
"prettier:check": "prettier --check .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"start": "cd docs && yarn start",
"start:test": "cd docs && yarn start:test",
"test": "yarn test:jest",
"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-tui-date-picker/tsconfig.json",
"precommit": "yarn run type-check",
"postinstall": "preconstruct dev && manypkg check",
"version": "changeset && changeset version",
"release": "yarn build && changeset publish"
},
"files": [
"dist"
],
"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"
],
"testEnvironment": "jsdom"
},
"workspaces": [
"packages/*",
"docs",
"storybook"
],
"preconstruct": {
"packages": [
"packages/*",
"docs/generate-magical-types"
],
"exports": {
"importConditionDefaultExport": "default"
}
},
"resolutions": {
"csstype": "^3.0.2"
},
"packageManager": "yarn@1.22.19"
}