-
-
Notifications
You must be signed in to change notification settings - Fork 436
/
Copy pathpackage.json
82 lines (82 loc) · 2.29 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
{
"name": "styled-components-docs",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"analyze": "ANALYZE=true yarn build",
"dev": "next dev",
"prebuild": "rimraf .next",
"build": "NODE_ENV=production next build",
"lint:fix": "next lint --fix",
"lint": "next lint",
"start": "NODE_ENV=production next start",
"test": "jest -c .jest.config.js",
"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": "^12.0.7",
"@styled-icons/boxicons-regular": "^10.38.0",
"@styled-icons/fa-brands": "^10.38.0",
"@styled-icons/material": "^10.34.0",
"@types/react": "^17.0.37",
"@zeit/next-mdx": "^1.2.0",
"@zeit/next-source-maps": "^0.0.3",
"axios": "^0.24.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": "^3.0.0",
"markdown-to-jsx": "^7.1.5",
"next": "^12.0.7",
"polished": "^4.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-live-runner": "^1.0.0-rc.2",
"react-transition-group": "^4.4.2",
"styled-components": "^5.3.3",
"styled-theming": "^2.2.0",
"stylis": "^3.0.0",
"stylis-plugin-rtl": "^1.0.0",
"webpack-bundle-analyzer": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@next/eslint-plugin-next": "^12.0.7",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.5",
"babel-eslint": "^10.0.1",
"babel-jest": "^27.4.2",
"babel-plugin-dynamic-import-node": "^2.1.0",
"babel-plugin-styled-components": "^2.0.2",
"bundlesize": "^0.18.0",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.4.1",
"eslint-config-next": "12.0.7",
"husky-v4": "^4.3.8",
"jest": "^27.4.3",
"jest-styled-components": "^7.0.8",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.0"
},
"bundlesize": [
{
"path": ".next/static/*/pages/**/*.js",
"maxSize": "300kB"
}
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}