-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.66 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.66 KB
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
{
"name": "react-ui-interactions",
"version": "1.0.0",
"description": "Ready-to-Use UI Solutions for React Application",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --mode development",
"build": "webpack --mode production",
"format": "prettier src/**/*.js --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@reach/router": "^1.2.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-spring": "^8.0.14",
"styled-components": "^4.1.3"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"clean-webpack-plugin": "^2.0.0",
"error-overlay-webpack-plugin": "^0.1.6",
"html-webpack-plugin": "^3.2.0",
"prettier": "1.16.4",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"workbox-webpack-plugin": "^3.6.3"
},
"browserslist": "> 0.25%, not dead",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage"
}
],
"@babel/preset-react"
],
"plugins": [
"babel-plugin-styled-components"
]
},
"prettier": {
"printWidth": 100,
"trailingComma": "all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coderitual/react-ui-interactions.git"
},
"bugs": {
"url": "https://github.com/coderitual/react-ui-interactions/issues"
},
"homepage": "https://github.com/coderitual/react-ui-interactions#readme",
"author": "coderitual",
"license": "MIT"
}