-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 2.73 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
{
"name": "neumorphism-react",
"version": "1.1.1",
"description": "Neumorphism component library for React",
"author": "Theo Zanchi",
"keywords": [
"neumorphism",
"react",
"react-components",
"components",
"library",
"components-library",
"neumorphic-ui",
"neumorphism-ui",
"styled-components"
],
"repository": {
"type": "git",
"url": "https://github.com/ZanchiTheo/neumorphism-react.git"
},
"main": "lib/index.js",
"browser": "lib/index.umd.js",
"module": "lib/index.es.js",
"files": [
"/lib",
"/readme"
],
"scripts": {
"start": "styleguidist server",
"eslint": "eslint '**/*.{js,jsx}'",
"lint": "prettier-eslint --write",
"lint-check": "prettier-eslint",
"test": "jest",
"prelint": "./node_modules/.bin/eslint . --fix",
"build": "rollup -c",
"prepublishOnly": "rm -rf lib && npm run build",
"postbuild": "yarn pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"docs:build": "styleguidist build"
},
"license": "ISC",
"private": false,
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"@emotion/core": "10.x",
"@emotion/styled": "10.x",
"react": "^16.x",
"react-dom": "^16.x"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.5.1",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-sonarjs": "^0.5.0",
"husky": "^4.2.5",
"jest": "^25.5.4",
"jest-emotion": "^10.0.32",
"jest-enzyme": "^7.1.2",
"jest-styled-components": "^7.0.2",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"prettier-eslint": "^9.0.1",
"prettier-eslint-cli": "^5.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-styleguidist": "^11.0.5",
"rollup": "^2.7.6",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-uglify": "^6.0.4",
"svg-url-loader": "^5.0.0",
"webpack": "^4.43.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx}": [
"eslint",
"prettier-eslint --write"
]
}
}