-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
114 lines (114 loc) · 3.69 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
112
113
114
{
"name": "react-awesome-button",
"version": "7.0.5",
"description": "Performant, extendable, highly customisable, production ready React Component that renders an animated basic set of UI buttons",
"main": "dist/index",
"types": "dist/src/index.d.ts",
"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"
},
"scripts": {
"start": "webpack-dev-server --config webpack.demo.config.js",
"build": "webpack --mode production",
"build:typescript": "webpack --mode production --config webpack.typescript.config.js",
"build:scss": "webpack --mode production --config webpack.scss.config.js && rm ./dist/styles.js",
"build:themes": "babel-node ./theme-builder.js",
"lint": "eslint src/**",
"prepublish": "npm run build && npm run build:scss && npm run build:themes",
"test": "jest",
"storybook": "start-storybook -p 40123 -s public",
"build-storybook": "build-storybook -s public --quiet"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/node": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.5.12",
"@storybook/addon-storysource": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/enzyme": "^3.10.12",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^29.2.0",
"@types/react": "^18.0.21",
"@types/react-test-renderer": "^18.0.0",
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.13.1",
"eslint": "^8.25.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.10",
"jest": "^29.2.1",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^7.0.3",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"postcss-loader": "^7.0.1",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.4.2",
"react-router-dom": "^6.4.2",
"react-test-renderer": "^18.2.0",
"sass-loader": "^13.1.0",
"shelljs": "^0.8.5",
"storybook-addon-sass-postcss": "^0.1.3",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"keywords": [
"react-component",
"react-awesome-button",
"react",
"button",
"awesome-button",
"progress",
"component",
"UI component",
"javascript"
],
"dependencies": {
"@rcaferati/wac": "^1.0.0"
},
"loki": {
"configurations": {
"chrome.laptop": {
"target": "chrome.docker",
"width": 1366,
"height": 768,
"deviceScaleFactor": 1,
"mobile": false
}
}
}
}