-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
105 lines (105 loc) · 3.35 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
{
"name": "",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"start": "run-p start:*",
"start:watch": "preconstruct watch",
"start:stories": "start-storybook -p 6006",
"test": "jest",
"test:watch": "jest --watch",
"changeset": "changeset",
"apply-changesets": "changeset version",
"release": "yarn build && changeset publish",
"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": "bolt ws exec --parallel -- rm -rf dist",
"delete:modules": "bolt ws exec --parallel -- rm -rf node_modules && rm -rf node_modules",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"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": "^2.22.0",
"@emotion/core": "^10.0.14",
"@preconstruct/cli": "^2.0.0",
"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-options": "^2.0.1",
"babylon": "^7.0.0-beta.22",
"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",
"eslint": "^5.13.0",
"jest-in-case": "^1.0.2",
"jest-watch-typeahead": "^0.4.2",
"react-markings": "^1.2.0",
"read-file-async": "^1.0.0",
"resolve-async": "^1.0.1",
"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/preset-typescript": "^7.0.0",
"@storybook/addon-actions": "^6.1.14",
"@storybook/addon-essentials": "^6.1.14",
"@storybook/addon-links": "^6.1.14",
"@storybook/react": "^6.1.14",
"@storybook/storybook-deployer": "^2.8.7",
"babel-jest": "^26.0.0",
"babel-loader": "^8.2.2",
"babel-plugin-emotion": "^10.0.14",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"flow-bin": "^0.98.0",
"jest": "^26.0.0",
"jest-in-case": "^1.0.2",
"jsdom": "^11.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.13.7",
"react": "^16.3.1",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.3.1"
}
}