forked from rcdexta/react-trello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.54 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
{
"name": "react-trello",
"description": "Pluggable components to add a trello like kanban board to your application",
"main": "dist/index.js",
"jsnext:main": "components/index.js",
"module": "components/index.js",
"version": "1.0.7",
"files": [
"src",
"dist",
"README"
],
"scripts": {
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"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\""
},
"repository": {
"type": "git",
"url": "https://github.com/kiarashws/react-trello"
},
"keywords": [
"react",
"trello",
"board"
],
"author": "RC, Prakash",
"license": "MIT",
"bugs": {
"url": "https://github.com/kiarashws/react-trello/issues"
},
"homepage": "https://github.com/kiarashws/react-trello",
"dependencies": {
"immutability-helper": "^2.4.0",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react-perfect-scrollbar": "^1.5.0",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-actions": "^1.2.2",
"redux-logger": "^3.0.6",
"smooth-dnd": "0.6.2",
"styled-components": "^2.1.1",
"uuid": "^3.1.0"
},
"devDependencies": {
"@storybook/addon-info": "^3.2.12",
"@storybook/addon-options": "^3.2.12",
"@storybook/cli": "^3.2.12",
"@storybook/react": "^3.2.12",
"@storybook/storybook-deployer": "^2.0.0",
"autoprefixer": "^7.1.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^21.0.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.22.0",
"chai": "^4.0.1",
"chai-enzyme": "^0.7.1",
"codecov.io": "^0.1.6",
"commitizen": "^2.9.6",
"css-loader": "^0.28.4",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^2.8.2",
"eslint": "^4.14.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-standard": "^3.0.1",
"eventsource-polyfill": "^0.9.6",
"extract-text-webpack-plugin": "^2.1.0",
"husky": "^0.14.3",
"jest": "^21.0.1",
"jest-cli": "^21.0.1",
"jsdom": "^9.12.0",
"mocha": "^3.4.2",
"node-sass": "^4.5.3",
"prettier": "1.10.2",
"pretty-quick": "^1.4.1",
"react": "^16.2.0",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^16.2.0",
"react-test-renderer": "^15.4.2",
"sass-loader": "^6.0.6",
"semantic-release": "^6.3.6",
"style-loader": "^0.18.2",
"webpack": "^3.0.0"
},
"peerDependencies": {
"react": ">= 0.14.0 < 17.0.0-0",
"react-dom": ">= 0.14.0 < 17.0.0-0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}