-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
90 lines (90 loc) · 2.77 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
{
"name": "react-tradeshift-ui",
"version": "0.0.0-semantically-released",
"main": "dist/components.js",
"module": "src/components/index.js",
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"build": "webpack",
"prepublish": "npm run build",
"build-storybook": "build-storybook",
"start": "start-storybook -p 9009",
"lint": "eslint src",
"test": "react-scripts test --env=jsdom",
"prettier": "prettier --write --use-tabs --single-quote --print-width 100 --color src",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"commitmsg": "opt --in commit-msg --exec \"validate-commit-msg\"",
"precommit": "lint-staged",
"commit": "git-cz"
},
"lint-staged": {
"*.js": [
"eslint --color",
"prettier --write --use-tabs --single-quote --print-width 100 --color",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@storybook/addon-info": "^3.1.3",
"@storybook/addon-knobs": "^3.3.3",
"@storybook/addon-options": "^3.3.3",
"@storybook/react": "^3.3.3",
"@types/extract-text-webpack-plugin": "^2.0.1",
"@types/jest": "^19.2.3",
"@types/react": "^15.0.23",
"@types/react-dom": "^15.5.0",
"@types/react-portal": "^3.0.1",
"@types/react-test-renderer": "^15.5.0",
"@types/webpack": "^2.2.15",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"codecov.io": "^0.1.6",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^20.0.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^2.1.0",
"husky": "^0.13.3",
"lint-staged": "^3.4.1",
"lodash": "^4.17.4",
"opt-cli": "^1.5.1",
"prettier": "^1.3.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-scripts": "^1.0.7",
"react-test-renderer": "^15.5.4",
"semantic-release": "^6.3.2",
"validate-commit-msg": "^2.12.1",
"webpack": "^2.5.1"
},
"dependencies": {
"@types/classnames": "0.0.32",
"classnames": "^2.2.5",
"prop-types": "^15.5.8",
"react-portal": "^3.1.0"
},
"peerDependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4",
"prop-types": "^15.5.8"
},
"repository": {
"type": "git",
"url": "https://github.com/Tradeshift/react-tradeshift-ui.git"
},
"bugs": {
"url": "https://github.com/Tradeshift/react-tradeshift-ui/issues"
},
"homepage": "https://github.com/Tradeshift/react-tradeshift-ui#readme"
}