-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.17 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.17 KB
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
{
"name": "",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"start": "run-p start:*",
"start:watch": "preconstruct watch",
"test": "jest",
"test:watch": "jest --watch",
"changeset": "changeset",
"apply-changesets": "changeset version",
"release": "yarn build && changeset publish --use-npmrc=./.npmrc-public",
"postinstall": "preconstruct dev",
"lint": "yarn eslint \"./**/*.js\"",
"lint:fix": "prettier --write packages/**/*.js",
"validate": "yarn lint && yarn test && yarn flow",
"build": "preconstruct build",
"clean": "yarn delete:modules && yarn delete:dist",
"delete:dist": "yarn ws exec --parallel -- rm -rf dist",
"delete:modules": "yarn ws exec --parallel -- rm -rf node_modules && rm -rf node_modules"
},
"workspaces": [
"packages/*"
],
"preconstruct": {
"packages": [
"packages/extract-react-types",
"packages/kind2string",
"packages/pretty-proptypes"
]
},
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"resolutions": {
"@babel/traverse": "7.23.2"
},
"dependencies": {
"@aparna036/babel-explode-module": "^2.0.1",
"@babel/core": "^7.4.4",
"@babel/plugin-syntax-flow": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-syntax-typescript": "^7.2.0",
"@babel/runtime": "^7.4.4",
"@babel/types": "^7.0.0-beta.56",
"@changesets/cli": "^2.22.0",
"@emotion/core": "^10.0.14",
"@preconstruct/cli": "^2.8.12",
"ast-pretty-print": "^2.0.1",
"babel-errors": "^1.1.1",
"babel-eslint": "^10.0.1",
"babel-file": "^3.0.0",
"babel-flow-identifiers": "^1.1.3",
"babel-helper-simplify-module": "^2.2.1",
"babel-identifiers": "^1.1.2",
"babel-normalize-comments": "^1.0.1",
"babel-react-components": "^1.1.0",
"babel-type-scopes": "^1.1.0",
"babylon": "^7.0.0-beta.22",
"babylon-options": "^2.0.1",
"eslint": "^9.28.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.12.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-react": "^7.37.5",
"jest-in-case": "^1.0.2",
"jest-watch-typeahead": "^1.0.0",
"react-markings": "^1.2.0",
"read-file-async": "^1.0.0",
"resolve": "^1.10.1",
"resolve-async": "^1.0.1",
"strip-indent": "^2.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@testing-library/react": "^12.1.4",
"babel-jest": "^27.0.0",
"babel-loader": "^8.4.1",
"babel-plugin-emotion": "^10.0.14",
"flow-bin": "^0.98.0",
"jest": "^27.0.0",
"jest-in-case": "^1.0.2",
"jsdom": "^26.1.0",
"prettier": "^1.13.7",
"react": "^16.3.1",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.3.1"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}