This repository has been archived by the owner on Sep 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.57 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
{
"name": "react-dip",
"version": "0.0.3-beta.10",
"description": "Simple & declarative transition animations for React",
"main": "dist/react-dip.cjs.js",
"jsnext:main": "dist/react-dip.esm.js",
"module": "dist/react-dip.esm.js",
"pure-module": true,
"scripts": {
"build": "kcd-scripts build --bundle",
"copyFlowSource": "node ./buildscripts/createFlowLinks",
"flow": "flow",
"lint": "kcd-scripts lint",
"postbuild": "npm run copyFlowSource",
"precommit": "kcd-scripts precommit",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"test": "flow && jest",
"test:ci": "flow && npm run lint && npm run storybook:build && jest"
},
"files": [
"dist",
"preact",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mdugue/react-dip.git"
},
"keywords": [
"react",
"UI",
"UX",
"transitions",
"animations",
"microinteractions"
],
"author": "Manuel Dugue <post@manueldugue.de> (https://manueldugue.de)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mdugue/react-dip/issues"
},
"homepage": "https://github.com/mdugue/react-dip#readme",
"devDependencies": {
"@storybook/addon-actions": "^3.4.2",
"@storybook/addon-links": "^3.4.2",
"@storybook/addon-notes": "^3.4.2",
"@storybook/addon-storyshots": "^3.4.2",
"@storybook/addons": "^3.4.2",
"@storybook/react": "^3.4.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^23.0.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-runtime": "^6.26.0",
"cross-env": "^5.1.4",
"flow-bin": "^0.71.0",
"jest": "^22.4.3",
"kcd-scripts": "^0.37.0",
"prettier": "^1.12.1",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-router-dom": "^4.2.2",
"regenerator-runtime": "^0.11.1",
"storybook-react-router": "^1.0.1",
"styled-components": "^3.2.6",
"web-animations-js": "^2.3.1"
},
"dependencies": {},
"peerDependencies": {
"react": ">=15.0.0",
"react-dom": ">=15.0.0"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"max-lines": "off",
"no-eq-null": "off",
"eqeqeq": "off",
"react/jsx-indent": "off",
"complexity": [
"error",
12
]
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"storybook-static",
"**/build"
],
"jest": {
"rootDir": "./src/"
}
}