-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.43 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
{
"name": "@codeurs/carousel",
"version": "0.0.16",
"repository": "https://github.com/codeurs/carousel",
"author": "Ben Merckx <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"dev": "start-storybook --port 8000",
"build": "tsc",
"prepublish": "yarn build",
"deploy": "yarn -s build && yarn -s pages:build && yarn publish && yarn -s pages:deploy",
"pages:build": "build-storybook -c .storybook -o .out",
"pages:deploy": "git-directory-deploy --directory .out --branch gh-pages"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@storybook/addon-actions": "^5.2.5",
"@storybook/addon-info": "^5.2.5",
"@storybook/addon-knobs": "^5.2.5",
"@storybook/addon-notes": "^5.2.5",
"@storybook/cli": "^5.2.5",
"@storybook/react": "^5.2.5",
"@types/deep-equal": "^1.0.1",
"@types/jest": "^24.0.19",
"@types/storybook__react": "^4.0.2",
"@types/throttle-debounce": "^2.1.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"git-directory-deploy": "^1.5.1",
"jest": "^24.9.0",
"react-docgen-typescript-loader": "^3.3.0",
"react-dom": "^16.11.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
},
"peerDependencies": {
"react": "^16.11.0"
},
"dependencies": {
"popmotion": "^8.7.0",
"throttle-debounce": "^2.1.0",
"tslib": "^1.10.0"
}
}