-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
107 lines (107 loc) · 4.67 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
{
"name": "react-ui-validations",
"version": "0.7.0",
"description": "Validations for retail-ui",
"scripts": {
"build:retail-ui": "rollup --config rollup.retail-ui.config.js",
"build:react-ui": "rollup --config rollup.react-ui.config.js",
"bundle-dts": "node scripts/bundle-dts.js",
"prepare-packages": "node scripts/prepare-packages.js",
"storybook": "cross-env NODE_ENV=storybook start-storybook -p 8081 -c .storybook",
"compile-markdown-loader": "babel ./loaders/markdown-loader.es6 --out-file ./loaders/markdown-loader.js",
"docs-clean": "rimraf dist",
"docs-compile-markdown-loader": "babel ./loaders/markdown-loader.es6 --out-file ./loaders/markdown-loader.js",
"docs-build": "npm run docs-compile-markdown-loader && cross-env NODE_ENV=production webpack -p --config webpack.docs.config.js",
"docs-start": "npm run compile-markdown-loader && webpack-dev-server -d --history-api-fallback --inline --config webpack.docs.config.js",
"docs-publish": "npm run docs-clean && git clone [email protected]:skbkontur/react-ui-validations.git dist && cd dist && git checkout gh-pages && cd .. && npm run docs-build && cd dist && git add . && git commit --allow-empty -am \"$TRAVIS_TAG\" && git push [email protected]:skbkontur/react-ui-validations.git gh-pages && cd ..",
"docs-publish-update": "npm run docs-clean && git clone [email protected]:skbkontur/react-ui-validations.git dist && cd dist && git checkout gh-pages && cd .. && npm run docs-build && cd dist && git add . && git commit --allow-empty -am \"update docs\" && git push [email protected]:skbkontur/react-ui-validations.git gh-pages && cd .."
},
"main": "./index.js",
"types": "./index.d.ts",
"author": "exactlynosense <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/skbkontur/react-ui-validations.git"
},
"bugs": {
"url": "https://github.com/skbkontur/react-ui-validations/issues"
},
"files": [
"index.d.ts",
"index.js",
"src/*"
],
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0-0 || ^16.0.0",
"retail-ui": "<1.0.0"
},
"dependencies": {
"add-event-listener": "^0.0.1",
"lodash.isequal": "^4.5.0",
"prop-types": "^15.5.10",
"smoothscroll-polyfill": "^0.3.4"
},
"devDependencies": {
"@hugmanrique/react-markdown-loader": "^0.0.2",
"@storybook/addons": "3.4.10",
"@storybook/react": "3.4.10",
"@types/lodash.isequal": "4.5.2",
"@types/react": "^0.14.9 || ^15.0.25 || ^16.0.0",
"@types/react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0",
"@types/react-router": "^3.0.8",
"@types/react-syntax-highlighter": "^10.1.0",
"@types/react-helmet": "^5.0.8",
"@types/storybook__react": "^3.0.7",
"@types/styled-components": "^4.1.6",
"autoprefixer": "^6.7.2",
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-runtime": "^6.26.0",
"classnames": "^2.2.6",
"classnames-loader": "^2.0.0",
"cross-env": "^5.1.3",
"css": "^2.2.1",
"css-loader": "^0.28.5",
"dts-bundle": "^0.7.3",
"file-loader": "^3.0.1",
"fs-readdir-recursive": "^1.0.0",
"html-webpack-plugin": "^2.28.0",
"html-loader": "^0.5.5",
"html-to-react-loader": "^1.0.0-alpha.10",
"less": "^3.9.0",
"less-loader": "^4.0.5",
"markdown": "^0.5.0",
"output-file-sync": "^2.0.0",
"prettier": "^1.10.2",
"raw-loader": "^0.5.1",
"react": "^16.4.1",
"react-addons-css-transition-group": "^15.6.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"react-hot-loader": "^1.3.1",
"react-router": "^3.0.2",
"react-syntax-highlighter": "^4.0.1",
"retail-ui": "^0.19.1",
"rimraf": "^2.5.4",
"rollup": "^0.65.2",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-typescript2": "^0.17.0",
"shelljs": "^0.8.1",
"style": "^0.0.3",
"style-loader": "^0.18.2",
"styled-components": "^4.1.3",
"ts-loader": "2.3.7",
"typescript": "3.3.3",
"webpack": "3.12.0",
"webpack-dev-server": "2.7.1"
}
}