-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
73 lines (73 loc) · 2.1 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
{
"name": "react-flexa",
"version": "0.9.3",
"description": "React flexbox grid system using styled components",
"main": "dist/index.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"test": "yarn run lint && yarn run jest",
"jest": "jest",
"jest:watch": "yarn run jest -- --watch",
"build": "babel -d dist/ src/",
"prepublish": "yarn run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaronvanston/react-flexa.git"
},
"keywords": [
"flexbox",
"grid",
"styled components",
"react"
],
"author": "Aaron Vanston",
"license": "MIT",
"bugs": {
"url": "https://github.com/aaronvanston/react-flexa/issues"
},
"homepage": "https://github.com/aaronvanston/react-flexa#readme",
"devDependencies": {
"@kadira/storybook-deployer": "^1.2.0",
"@storybook/addon-knobs": "^3.1.2",
"@storybook/addon-options": "^3.1.2",
"@storybook/react": "^3.1.3",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-preset-airbnb": "^2.2.3",
"babel-preset-stage-1": "^6.22.0",
"enzyme": "^2.8.0",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"jest": "^20.0.3",
"jest-styled-components": "^4.4.1",
"jsdom": "^11.0.0",
"jsdom-global": "^3.0.2",
"raw-loader": "^0.5.1",
"react": "^15.5.4",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"standard-version": "^6.0.1",
"storybook-readme": "^3.0.4",
"styled-components": "^2.0.0"
},
"peerDependencies": {
"react": "^15.5.4 || ^16.2.0",
"react-dom": "^15.5.4 || ^16.2.0",
"styled-components": "^2.0.0 || ^3.2.3"
},
"dependencies": {
"lodash": "^4.17.4",
"prop-types": "^15.5.10"
}
}