-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
83 lines (83 loc) · 2.49 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
{
"name": "re-cy-cle",
"version": "0.8.0",
"license": "ISC",
"author": "Code Yellow BV <[email protected]>",
"description": "React component library for Code Yellow",
"module": "dist/re-cy-cle.es.js",
"main": "dist/re-cy-cle.cjs.js",
"repository": {
"type": "git",
"url": "git://github.com/CodeYellowBV/re-cy-cle.git"
},
"scripts": {
"start": "NODE_ENV=development start-storybook -p 9001 -c storybook",
"lint": "eslint src",
"preversion": "npm run -s lint && npm test && NODE_ENV=production npm run -s build && npm run -s deploy-storybook",
"version": "git add -A dist",
"build": "rm -f dist/** && node build.js",
"//precommit": "lint-staged",
"build-storybook": "NODE_ENV=production build-storybook -c storybook -o .out",
"deploy-storybook": "storybook-to-ghpages -c storybook"
},
"lint-staged": {
"src/**/*.js": [
"prettier --single-quote --trailing-comma es5 --tab-width 4 --write",
"git add"
]
},
"dependencies": {
"downshift": "^7.6.0",
"polished": "^4.2.2",
"prop-types": "^15.8.1",
"react-custom-scrollbars": "^4.2.1",
"react-day-picker": "^6.2.1",
"react-input-autosize": "^3.0.0",
"react-onclickoutside": "^6.13.0",
"react-styled-flexboxgrid": "^3.2.1",
"react-text-mask": "5.5.0",
"react-textarea-autosize": "^8.4.1",
"text-mask-addons": "^3.8.0",
"typeface-roboto": "^1.1.13"
},
"engines": {
"node": ">=4"
},
"files": [
"dist/"
],
"devDependencies": {
"@storybook/addon-actions": "^3.4.12",
"@storybook/addon-info": "^3.4.12",
"@storybook/addon-storyshots": "^3.4.12",
"@storybook/react": "^3.4.12",
"@storybook/storybook-deployer": "^2.8.16",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-react-cy-app": "^2.3.1",
"eslint": "^4.1.1",
"eslint-config-codeyellow": "^4.1.5",
"i18next": "^22.4.15",
"jest": "^23.6.0",
"lint-staged": "^13.2.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"prettier": "^2.8.8",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router-dom": "^5.3.4",
"react-test-renderer": "^16.14.0",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-multi-entry": "^2.1.0",
"styled-components": "^3.4.10"
},
"peerDependencies": {
"i18next": ">=22.4.15",
"lodash": "^4.17.21",
"moment": ">=2.29.4",
"react": ">=16.14.0",
"react-router-dom": "^5.3.4",
"styled-components": ">=3.4.10"
}
}