-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.55 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
{
"name": "glamorous-flex-grid",
"version": "0.0.0-development",
"description": "Flex based grid for glamorous",
"main": "dist/bundle",
"scripts": {
"commitmsg": "validate-commit-msg",
"cz-commit": "git-cz",
"setup": "npm-run-all setup:*",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "webpack",
"setup:semantic-release": "semantic-release-cli setup",
"setup:commitizen": "commitizen init cz-conventional-changelog --save-dev --save-exact",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "https://github.com/johnnyBira/glamorous-flex-grid"
},
"keywords": [],
"author": "John Persson",
"license": "MIT",
"bugs": {
"url": "https://github.com/johnnyBira/glamorous-flex-grid/issues"
},
"files": [
"dist",
"README.md"
],
"homepage": "<%= repo %>#readme",
"devDependencies": {
"@storybook/addon-actions": "^3.2.10",
"@storybook/addon-links": "^3.2.10",
"@storybook/react": "^3.2.10",
"babel": "^6.23.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-flowtype": "^2.36.0",
"husky": "^0.14.3",
"npm-run-all": "^4.1.1",
"rimraf": "^2.6.1",
"semantic-release": "^8.0.3",
"semantic-release-cli": "^3.0.3",
"validate-commit-msg": "^2.14.0",
"webpack": "^3.6.0",
"yeoman-generator": "^1.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"scope": {
"required": true,
"allowed": [
"package-1",
"package-2"
],
"validate": true,
"multiple": true
}
}
},
"dependencies": {
"deepmerge": "^1.5.2",
"eslint": "3.19.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jest": "^21.1.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.1.0",
"glamorous": "^4.9.5",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"webpack-merge": "^4.1.0"
}
}