forked from rcdexta/react-trello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.17 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
{
"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",
"files": [
"src",
"dist",
"README"
],
"scripts": {
"lint": "eslint src/**",
"lintfix": "eslint --fix src/**",
"prepublish": "npm run lint && 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"
},
"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",
"devDependencies": {
"@kadira/react-storybook-addon-info": "^3.4.0",
"@kadira/storybook": "^2.35.3",
"@kadira/storybook-addon-actions": "^1.1.3",
"@kadira/storybook-addon-options": "^1.0.2",
"autoprefixer": "^6.5.3",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^6.1.2",
"babel-jest": "^18.0.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"codecov.io": "^0.1.6",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^1.2.0",
"enzyme": "^2.6.0",
"eslint": "^3.16.1",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.7.1",
"eslint-plugin-standard": "^2.0.1",
"eventsource-polyfill": "^0.9.6",
"extract-text-webpack-plugin": "^1.0.1",
"isparta": "^4.0.0",
"istanbul": "^1.1.0-alpha.1",
"jest": "^18.1.0",
"jsdom": "^9.8.3",
"mocha": "^3.2.0",
"node-sass": "^3.13.0",
"react-addons-test-utils": "^15.4.2",
"react-test-renderer": "^15.4.2",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"semantic-release": "^6.3.2",
"sinon": "^1.17.6"
},
"dependencies": {
"@kadira/storybook-deployer": "^1.0.0",
"immutability-helper": "^2.2.3",
"invariant": "^2.0.0",
"lodash.flow": "^3.5.0",
"react": "^15.4.2",
"react-dnd": "^2.2.4",
"react-dnd-html5-backend": "^2.2.4",
"react-dnd-multi-backend": "^2.3.7",
"react-dnd-touch-backend": "^0.3.11",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"redux": "^3.6.0",
"redux-actions": "^1.2.2",
"styled-components": "^1.4.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}