forked from overra/styled-components-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.7 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
{
"name": "styled-components-docs",
"version": "1.0.0",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"sideEffects": [
"./utils/prismTemplateString.js"
],
"scripts": {
"analyze": "ANALYZE=true yarn build",
"dev": "next dev",
"prebuild": "rimraf .next",
"build": "NODE_ENV=production next build",
"lint:fix": "eslint . --fix",
"lint": "eslint .",
"start": "NODE_ENV=production next start",
"test": "jest -c .jest.config.js",
"precommit": "lint-staged",
"prettier": "prettier **/*.js --write",
"size": "bundlesize"
},
"dependencies": {
"@mdx-js/loader": "^1.5.3",
"@mdx-js/mdx": "^1.5.3",
"@mdx-js/react": "^1.5.3",
"@next/mdx": "^9.1.7",
"@styled-icons/boxicons-regular": "^9.4.1",
"@styled-icons/fa-brands": "^9.1.0",
"@styled-icons/material": "^9.0.1",
"@types/react": "^16.4.14",
"@zeit/next-mdx": "^1.2.0",
"@zeit/next-source-maps": "^0.0.3",
"axios": "^0.19.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-polished": "^1.1.0",
"docsearch.js": "2.6.3",
"invariant": "^2.2.4",
"isomorphic-fetch": "^2.2.1",
"markdown-to-jsx": "^6.10.2",
"next": "^9.0.6",
"polished": "^3.4.0",
"prismjs": "^1.6.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-is": "^16.8.6",
"react-live": "^2.1.2",
"react-transition-group": "^4.3.0",
"styled-components": "^5.0.0",
"styled-theming": "^2.2.0",
"stylis-plugin-rtl": "^1.0.0",
"webpack-bundle-analyzer": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-dynamic-import-node": "^2.1.0",
"bundlesize": "^0.18.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"husky": "^4.0.7",
"jest": "^24.8.0",
"jest-styled-components": "7.0.0",
"lint-staged": "^9.5.0",
"prettier": "^1.18.2",
"react-test-renderer": "^16.5.2",
"rimraf": "^3.0.0"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"*.js": [
"jest -c .jest.config.js --findRelatedTests",
"eslint --fix",
"prettier --write",
"git add"
],
"*.md": [
"prettier --parser mdx --no-semi --write",
"git add"
]
},
"bundlesize": [
{
"path": ".next/static/*/pages/**/*.js",
"maxSize": "300kB"
}
]
}