forked from atlassian/extract-react-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.1 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
{
"name": "extract-react-types-mono-repo",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"test": "jest",
"changeset": "changeset",
"bump": "changeset bump",
"release": "changeset release --public",
"postinstall": "preconstruct dev",
"dev:pretty-proptypes": "bolt w pretty-proptypes run dev",
"lint": "yarn eslint \"./**/*.js\"",
"validate": "yarn lint && yarn test && yarn flow",
"build": "preconstruct build",
"clean": "yarn delete:modules && yarn delete:dist",
"delete:dist": "bolt ws exec --parallel -- rm -rf dist",
"delete:modules": "bolt ws exec --parallel -- rm -rf node_modules && rm -rf node_modules"
},
"bolt": {
"workspaces": [
"packages/*"
]
},
"preconstruct": {
"packages": [
"packages/extract-react-types",
"packages/kind2string",
"packages/pretty-proptypes"
]
},
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"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": "^1.1.0",
"ast-pretty-print": "^2.0.1",
"babel-errors": "^1.1.1",
"babel-eslint": "^10.0.1",
"babel-file": "^3.0.0",
"babel-file-loader": "^2.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",
"emotion": "^9.1.1",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.2.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"jest-in-case": "^1.0.2",
"react-markings": "^1.2.0",
"resolve": "^1.10.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-cli": "^6.26.0",
"babel-jest": "^24.7.1",
"babel-plugin-emotion": "^9.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"flow-bin": "^0.98.0",
"jest": "^24.7.1",
"jest-in-case": "^1.0.2",
"jsdom": "^11.7.0",
"preconstruct": "^0.0.64",
"prettier": "^1.13.7",
"react": "^16.3.1",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.3.1"
}
}