-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.93 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
{
"name": "normalized-styled-components",
"version": "1.0.18",
"license": "MPL-2.0",
"description": "normalize.css with a styled-components mindset",
"keywords": [
"normalizations",
"style",
"css",
"react",
"css",
"css-in-js",
"styled-components"
],
"repository": "github:yldio/normalized-styled-components",
"main": "dist/normalized-styled-components.js",
"umd:main": "dist/normalized-styled-components.umd.js",
"module": "dist/normalized-styled-components.mjs",
"source": "src/index.js",
"directories": {
"lib": "dist"
},
"scripts": {
"dev": "microbundle watch",
"fmt": "prettier --config .prettierrc --write '**/*'",
"lint": "eslint . --fix",
"prepublish": "NODE_ENV=production microbundle",
"test": "SKIP_PREFLIGHT_CHECK=true NODE_ENV=test react-scripts test --env=jsdom"
},
"dependencies": {
"remcalc": "^1.0.10"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-react-app": "^3.0.5",
"eslint-config-xo": "^0.25.1",
"eslint-config-xo-react": "^0.17.0",
"eslint-config-xo-space": "^0.20.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.2.1",
"jest-styled-components": "^6.3.1",
"lint-staged": "^8.1.0",
"microbundle": "^0.9.0",
"prettier": "^1.15.3",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-scripts": "^2.1.1",
"react-test-renderer": "^16.7.0",
"styled-components": "^4.1.3"
},
"peerDependencies": {
"react": "*",
"styled-components": "*"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.*": [
"prettier --write",
"git add"
]
}
}