-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.78 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
{
"name": "@dlghq/dialog-components",
"version": "0.114.0",
"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": "exit 0",
"lint": "npm-run-all lint:js lint:flow",
"lint:js": "eslint src/",
"lint:flow": "flow check",
"lint:css": "stylelint 'src/**/*.css'",
"format": "npm-run-all --parallel format:*",
"format:js": "eslint src/ --fix",
"format:css": "find src -path '**/*.css' -exec stylefmt {} \\;",
"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'"
},
"repository": {
"type": "git",
"url": "https://github.com/dialogs/dialog-web-components.git"
},
"author": "Nikita Gusakov <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dialogs/dialog-web-components/issues"
},
"homepage": "https://dialogs.github.io/dialog-web-components",
"dependencies": {
"@dlghq/dialog-types": "1.16.0",
"@dlghq/dialog-utils": "0.5.1",
"@dlghq/emoji": "0.5.2",
"@dlghq/markdown": "0.8.2",
"@dlghq/react-l10n": "0.7.1",
"classnames": "2.2.5",
"clipboard": "1.6.0",
"date-fns": "^1.27.1",
"immutable": "3.8.1",
"lodash": "4.17.4",
"photoswipe": "4.1.1",
"react": "15.4.2",
"react-addons-css-transition-group": "15.4.2",
"react-addons-shallow-compare": "15.4.2",
"react-dom": "15.4.2",
"react-draggable": "2.2.3",
"react-hotkeys": "0.9.0",
"react-modal": "1.6.5",
"react-tether": "0.5.5",
"react-virtualized": "8.11.4"
},
"devDependencies": {
"@dlghq/babel-preset-dialog": "3.1.0",
"@dlghq/eslint-config-dialog": "1.22.0",
"@dlghq/postcss-dialog": "1.10.1",
"@dlghq/stylelint-config-dialog": "0.11.0",
"buildbranch": "1.0.0",
"chalk": "1.1.3",
"ejs": "2.5.5",
"eslint": "3.15.0",
"eslint-plugin-react": "6.9.0",
"file-loader": "0.10.0",
"flow-bin": "0.38.0",
"flow-coverage-report": "0.3.0",
"glob": "7.1.1",
"inquirer": "3.0.1",
"jest-cli": "18.1.0",
"npm-run-all": "4.0.1",
"postcss-loader": "1.2.2",
"raw-loader": "0.5.1",
"react-styleguidist": "4.6.3",
"stylefmt": "5.1.1",
"stylelint": "7.8.0",
"webpack": "2.2.1",
"yml-loader": "1.1.0"
}
}