forked from chad828/dialog-web-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.39 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
118
{
"name": "@dlghq/dialog-components",
"version": "0.156.2",
"description": "dialog Web Components",
"main": "src/index.js",
"files": [
"src"
],
"keywords": [
"react",
"components",
"dialog"
],
"scripts": {
"start": "styleguidist server",
"create": "node scripts/create-component.js",
"build": "npm-run-all --parallel build:*",
"build:l10n": "node scripts/compile-translations.js",
"pretest": "npm run lint",
"test": "jest",
"lint": "npm-run-all --sequential lint:eslint lint:flow",
"lint:eslint": "eslint src/",
"lint:flow": "flow",
"format": "npm-run-all --sequential format:*",
"format:eslint": "eslint --fix src/",
"format:prettier": "prettier --write --loglevel warn src/**/*.js",
"preversion": "npm test",
"postversion": "npm run release",
"prerelease": "npm run build",
"release": "npm publish",
"postpublish": "git push --follow-tags",
"predocs": "styleguidist build",
"docs": "buildbranch gh-pages styleguide",
"coverage": "flow-coverage-report -i 'src/**/*.js' -x 'src/styleguide/**/*.js' -x 'src/utils/compileMessages.js'",
"yaspeller": "yaspeller src/"
},
"repository": {
"type": "git",
"url": "https://github.com/dialogs/dialog-web-components.git"
},
"author": "Nikita Gusakov <[email protected]>",
"contributors": [
{
"name": "Oleg Shilov",
"email": "[email protected]",
"url": "https://github.com/olegshilov"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dialogs/dialog-web-components/issues"
},
"homepage": "https://dialogs.github.io/dialog-web-components",
"dependencies": {
"@dlghq/country-codes": "0.2.0",
"@dlghq/dialog-types": "1.35.3",
"@dlghq/dialog-utils": "0.9.0",
"@dlghq/emoji": "2.0.1",
"@dlghq/markdown": "1.1.0",
"@dlghq/react-l10n": "0.9.1",
"classnames": "2.2.5",
"clipboard": "2.0.0",
"croppie": "2.5.1",
"date-fns": "1.29.0",
"immutable": "3.8.2",
"key-event-to-string": "1.2.0",
"lodash": "4.17.5",
"photoswipe": "4.1.2",
"prop-types": "15.6.1",
"react": "16.3.1",
"react-dom": "16.3.1",
"react-jsonschema-form": "1.0.2",
"react-modal": "3.3.2",
"react-rangeslider": "2.2.0",
"react-select": "1.2.1",
"react-tether": "0.6.1",
"react-transition-group": "2.3.0",
"react-virtualized": "9.18.5",
"react-virtualized-select": "3.1.3",
"screenfull": "3.3.2"
},
"devDependencies": {
"@dlghq/babel-preset-dialog": "3.4.2",
"@dlghq/eslint-config-dialog": "3.4.0",
"@dlghq/postcss-dialog": "1.11.1",
"@dlghq/stylelint-config-dialog": "0.11.0",
"babel-jest": "22.4.3",
"babel-loader": "7.1.4",
"buildbranch": "2.0.1",
"chalk": "2.3.2",
"core-js": "2.5.4",
"ejs": "2.5.8",
"eslint": "4.19.1",
"eslint-plugin-react": "7.7.0",
"file-loader": "1.1.11",
"flow-bin": "0.69.0",
"flow-coverage-report": "0.5.0",
"glob": "7.1.2",
"inquirer": "5.2.0",
"jest": "22.4.3",
"jest-cli": "22.4.3",
"npm-run-all": "4.1.2",
"postcss-loader": "1.3.3",
"prettier": "1.11.1",
"raw-loader": "0.5.1",
"react-styleguidist": "6.0.33",
"style-loader": "0.20.3",
"svg-sprite-loader": "0.3.1",
"webpack": "3.11.0",
"yaspeller": "4.0.3",
"yml-loader": "2.1.0"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!@dlghq)"
]
}
}