-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.9 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.9 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
{
"name": "@whenapp/when",
"version": "0.0.0",
"license": "MIT",
"main": "dist/index.html",
"source": "index.html",
"babelMacros": {
"twin": {
"preset": "emotion"
}
},
"browserslist": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 and_chr version"
],
"scripts": {
"build": "yarn build:app && yarn build:storybook",
"build:app": "parcel build index.html",
"build:storybook": "build-storybook -o .storybook/dist",
"start": "yarn start:app",
"start:app": "parcel serve index.html --open",
"start:storybook": "start-storybook -p 6006",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@storybook/addon-actions": "^6.3.1",
"@storybook/addon-controls": "^6.3.1",
"@storybook/addon-docs": "^6.3.1",
"@storybook/addon-essentials": "^6.3.1",
"@storybook/addon-links": "^6.3.1",
"@storybook/react": "^6.3.1",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-transition-group": "^4.4.1",
"babel-loader": "^8.2.1",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"parcel": "^2.0.0-nightly.734",
"postcss": "^8.3.5",
"prettier": "^2.3.2",
"react-docgen-typescript": "^2.0.0",
"react-is": "^17.0.2",
"typescript": "^4.3.4"
},
"dependencies": {
"@emotion/babel-plugin-jsx-pragmatic": "^0.1.5",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@headlessui/react": "^1.3.0",
"@heroicons/react": "^1.0.1",
"date-fns": "^2.22.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-spring": "^9.2.3",
"react-transition-group": "^4.4.2",
"react-with-gesture": "^4.0.8",
"tailwindcss": "^2.2.4",
"twin.macro": "^2.5.0"
}
}