-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.39 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
{
"name": "@onesneakymofo/takeoff",
"version": "1.0.0",
"description": "Landing's Component Library",
"main": "dist/takeoff.cjs.js",
"module": "dist/takeoff.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/onesneakymofo/takeoff.git"
},
"author": "Chris Autwell <[email protected]>",
"license": "MIT",
"private": true,
"publishConfig": {
"access": "public"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@tailwindcss",
"**/@tailwindcss/**"
]
},
"scripts": {
"build": "preconstruct build",
"postinstall": "preconstruct dev && manypkg check",
"release": "yarn build && changeset publish",
"test": "jest",
"lint": "yarn eslint ."
},
"preconstruct": {
"packages": [
"packages/*"
]
},
"babelMacros": {
"twin": {
"config": "tailwind.config.js",
"preset": "emotion",
"dataTwProp": true,
"debugPlugins": false,
"debug": false
}
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-proposal-private-methods": "^7.16.5",
"@babel/plugin-proposal-private-property-in-object": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.5",
"@babel/preset-flow": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@changesets/cli": "^2.18.1",
"@emotion/babel-plugin": "^11.3.0",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@manypkg/cli": "^0.19.1",
"@preconstruct/cli": "^2.1.5",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/cli": "^6.4.9",
"@storybook/react": "^6.4.9",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"autoprefixer": "^10",
"babel-jest": "^27.4.5",
"babel-loader": "^8.2.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-twin": "^1.0.2",
"eslint": "7.32.0",
"jest": "^27.4.5",
"postcss": "^8",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tailwindcss": "2.2.16",
"twin.macro": "^2.8.2"
}
}