-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.34 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.34 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
{
"name": "react-flip-primitives",
"version": "0.5.10",
"description": "Building Blocks for Blazing Fast CSS based Animations",
"keywords": [
"react",
"flip",
"animation"
],
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"files": [
"dist"
],
"sideEffects": false,
"repository": "https://github.com/danielberndt/react-flip-primitives",
"author": "Daniel Berndt <daniel.berndt@gmail.com>",
"license": "MIT",
"scripts": {
"build": "db-scripts-bundle --size-snapshot",
"lint": "eslint --max-warnings=0 src *.js",
"format": "prettier --write '{src,stories}/**/*.{js,css}' '*.js'",
"setup": "npm install && npm run validate -s",
"prepublish": "npm run lint && npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@db-scripts/bundle": "0.2.3",
"@db-scripts/eslint-config": "^0.2.3",
"@storybook/addon-actions": "^5.2.8",
"@storybook/addon-links": "^5.2.8",
"@storybook/addons": "^5.2.8",
"@storybook/react": "^5.2.8",
"babel-loader": "^8.0.6",
"eslint": "6.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"storybook-dark-mode": "^0.2.0"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {
"@babel/runtime": "^7.7.6"
}
}