-
Notifications
You must be signed in to change notification settings - Fork 483
/
package.json
126 lines (126 loc) · 3.68 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "react-trello",
"version": "2.4.1",
"description": "Pluggable components to add a trello like kanban board to your application",
"main": "dist/index.js",
"files": [
"dist",
"README"
],
"scripts": {
"prepublish": "npm run build",
"storybook": "start-storybook -p 9002",
"test": "jest",
"test:watch": "jest --watch",
"test:cover": "istanbul cover -x *.test.js _mocha -- -R spec --require tests/config/setup 'tests/**/*.test.js'",
"test:report": "cat ./coverage/lcov.info | codecov && rm -rf ./coverage",
"build": "babel src --out-dir dist --copy-files",
"docs": "build-storybook -o docs",
"commit": "git cz",
"deploy-storybook": "storybook-to-ghpages",
"format": "pretty-quick \"src/**/*.js\"",
"size": "size-limit"
},
"repository": {
"type": "git",
"url": "https://github.com/rcdexta/react-trello"
},
"keywords": [
"react",
"trello",
"board"
],
"author": "RC, Prakash",
"license": "MIT",
"bugs": {
"url": "https://github.com/rcdexta/react-trello/issues"
},
"homepage": "https://github.com/rcdexta/react-trello",
"dependencies": {
"autosize": "^4.0.2",
"classnames": "^2.2.6",
"immutability-helper": "^2.8.1",
"lodash": "^4.17.11",
"prop-types": "^15.7.2",
"react-popopo": "^2.1.9",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-actions": "^2.6.1",
"redux-logger": "^3.0.6",
"trello-smooth-dnd": "1.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-async-to-generator": "7.4.4",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/plugin-transform-template-literals": "^7.4.4",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": " 7.0.0",
"@storybook/addon-info": "5.3.18",
"@storybook/addon-options": "5.3.18",
"@storybook/addon-storyshots": "5.3.18",
"@storybook/cli": "5.3.18",
"@storybook/react": "5.3.18",
"@storybook/storybook-deployer": "^2.8.7",
"autoprefixer": "^9.6.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^3.2.0",
"babel-preset-react": "^6.24.1",
"codecov.io": "^0.1.6",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"eventsource-polyfill": "^0.9.6",
"husky": "^1.1.2",
"i18next": "^17.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"jest-styled-components": "^6.3.3",
"prettier": "1.14.3",
"pretty-quick": "^1.7.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-i18next": "^10.11.0",
"react-test-renderer": "^16.8.6",
"semantic-release": "^17.2.3",
"size-limit": "^1.3.7",
"styled-components": "4.0.3"
},
"peerDependencies": {
"lodash": ">= 4.17.11",
"react": "*",
"react-dom": "*",
"react-redux": ">= 5.0.7",
"redux": ">= 4.0.0",
"redux-actions": ">= 2.6.1",
"redux-logger": ">= 3.0.6",
"styled-components": ">= 4.0.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"size-limit": [
{
"path": "dist/**/*.js",
"limit": "800 ms"
}
]
}