-
Notifications
You must be signed in to change notification settings - Fork 186
/
Copy pathpackage.json
72 lines (72 loc) · 2.43 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
{
"name": "@vkontakte/vkui",
"version": "1.3.8",
"main": "dist/vkui.js",
"repository": "https://github.com/VKCOM/VKUI",
"description": "VKUI library",
"devDependencies": {
"autoprefixer": "^7.2.3",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.12",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"classnames": "^2.2.5",
"css-loader": "^0.27.1",
"csso-webpack-plugin": "^1.0.0-beta.10",
"eslint": "^3.5.0",
"eslint-config-semistandard": "^7.0.0",
"eslint-config-standard": "^6.0.1",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^6.10.0",
"eslint-plugin-standard": "^2.0.0",
"extract-text-webpack-plugin": "^2.1.0",
"glob": "^7.1.2",
"jest": "^22.4.0",
"loader-utils": "^1.1.0",
"postcss-assets": "^4.1.0",
"postcss-custom-properties": "^5.0.2",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.3",
"postcss-map": "^0.9.0",
"pre-commit": "^1.2.2",
"react": "^15.6.2",
"react-docgen": "^2.20.0",
"react-dom": "^15.6.2",
"react-frame-component": "^1.1.1",
"react-styleguidist": "^6.1.0",
"schema-utils": "^0.4.3",
"style-loader": "^0.13.2",
"stylelint": "^7.2.0",
"prop-types": "^15.5.8",
"stylelint-config-standard": "^16.0.0",
"webpack": "^2.2.1",
"webpack-bundle-analyzer": "^2.9.2",
"webpack-merge": "^4.0.0",
"webpack-stats-plugin": "^0.1.4",
"xml2js-parser": "^1.1.1"
},
"peerDependencies": {
"react": "^15.6.2",
"prop-types": "^15.5.8"
},
"dependencies": {
"svg-sprite-loader": "^3.6.2"
},
"scripts": {
"prepublish": "npm run clear && npm run icons && npm run build && npm run styleguide:build",
"styleguide": "NODE_ENV=production styleguidist server --config=styleguide/config.js",
"styleguide:build": "NODE_ENV=production styleguidist build --config=styleguide/config.js",
"icons": "webpack --config=build/webpack.svg-config.js -p",
"build": "NODE_ENV=production webpack --config=build/webpack.config.js --bail",
"dev": "webpack --config=build/webpack.config.js --watch",
"clear": "rm -rf dist/*",
"test": "eslint . && ./node_modules/.bin/stylelint ./src/**/*.css && jest"
},
"pre-commit": [
"test"
]
}