-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
81 lines (81 loc) · 2.59 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
{
"name": "react-animation-components",
"version": "0.0.0-development",
"description": "A set of react transition components for basic animations.",
"main": "lib/react-animation-components.js",
"scripts": {
"commit": "git-cz",
"build": "NODE_ENV=production webpack -p --progress",
"test:single": "jest",
"test": "jest --watch",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"start": "npm run storybook",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "https://github.com/unruffledBeaver/react-animation-components.git"
},
"keywords": [
"react",
"animations",
"react",
"transition",
"group"
],
"author": "Chris Johnson",
"license": "MIT",
"bugs": {
"url": "https://github.com/unruffledBeaver/react-animation-components/issues"
},
"homepage": "https://github.com/unruffledBeaver/react-animation-components#readme",
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-transition-group": "^2.2.1",
"prop-types": "^15.6.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.2.12",
"@storybook/addon-knobs": "^3.2.12",
"@storybook/addon-links": "^3.2.12",
"@storybook/react": "^3.2.12",
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.9",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"ghooks": "^2.0.0",
"jest": "^21.2.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"react-transition-group": "^2.2.1",
"semantic-release": "^8.0.3",
"webpack": "^3.6.0"
},
"dependencies": {
"jest-cli": "^21.2.1",
"lodash": "^4.17.5"
},
"jest": {
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "./setup-tests.js"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run test:single"
}
}
}