forked from rcaferati/react-awesome-button
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.41 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
{
"name": "react-awesome-button",
"version": "6.1.0",
"description": "Performant, extendable, highly customisable, production ready React Component that renders an animated basic set of UI buttons",
"main": "dist/index.js",
"author": "Rafael Caferati",
"license": "MIT",
"homepage": "https://github.com/rcaferati/react-awesome-button",
"repository": {
"type": "git",
"url": "https://github.com/rcaferati/react-awesome-button"
},
"bugs": {
"url": "https://github.com/rcaferati/react-awesome-button/issues"
},
"jest": {
"testURL": "http://localhost"
},
"scripts": {
"start": "webpack-dev-server -d --config webpack.demo.config.js",
"build": "NODE_ENV=production webpack",
"build:scss": "NODE_ENV=production webpack --config webpack.scss.config.js && rm ./dist/styles.js",
"build:website": "webpack -p --config webpack.website.config.js",
"build:server": "webpack -p --config webpack.server.config.js",
"build:themes": "babel-node ./theme-builder.js",
"test": "BABEL_JEST_STAGE=0 jest",
"lint": "eslint src/**",
"prepublish": "npm run build && npm run build:scss && npm run build:themes",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peer-dependencies": {
"react": "^15.0.1 || ^16.0.0",
"prop-types": "^15.0.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.10",
"@storybook/addon-centered": "^3.4.10",
"@storybook/addon-info": "^3.4.10",
"@storybook/addon-knobs": "^3.4.10",
"@storybook/addon-links": "^3.4.10",
"@storybook/addon-storysource": "^3.4.10",
"@storybook/addon-viewport": "^3.4.10",
"@storybook/addons": "^3.4.10",
"@storybook/react": "^3.4.10",
"autoprefixer": "^7.0.1",
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.0.4",
"babel-loader": "^7.1.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.12",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"css-loader": "^0.28.1",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"jest": "^22.0.4",
"loki": "^0.14.2",
"node-sass": "^4.7.2",
"postcss-loader": "^2.0.10",
"prismjs": "^1.9.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-test-renderer": "^16.2.0",
"sass-loader": "^6.0.3",
"shelljs": "^0.7.8",
"storybook-addon-smart-knobs": "^3.3.1",
"style-loader": "^0.19.1",
"webpack": "^3.1.0",
"webpack-dev-server": "^2.10.0"
},
"keywords": [
"react-component",
"react-awesome-button",
"react",
"button",
"awesome-button",
"progress",
"component",
"UI component",
"javascript"
],
"loki": {
"configurations": {
"chrome.laptop": {
"target": "chrome.app",
"width": 1366,
"height": 768,
"deviceScaleFactor": 1,
"mobile": false,
"fitWindow": false
},
"chrome.iphone7": {
"target": "chrome.app",
"preset": "iPhone 7"
}
}
}
}