-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 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
{
"name": "sonnat.github.io",
"version": "1.0.0",
"license": "MIT",
"repository": "[email protected]:sonnat/sonnat.github.io.git",
"description": "The documentation website for Sonnat's component library.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"type-check": "tsc",
"prepare": "husky install"
},
"dependencies": {
"@sonnat/icons": "^2.2.0",
"@sonnat/ui": "^2.0.7",
"@utilityjs/use-is-mounted": "^1.0.2",
"@utilityjs/use-media-query": "^1.0.0",
"@utilityjs/use-register-node-ref": "^1.0.4",
"@utilityjs/use-scroll-guard": "^1.0.0",
"autoprefixer": "^10.4.2",
"classnames": "^2.3.1",
"clean-css": "^5.2.2",
"fast-deep-equal": "^3.1.3",
"lodash.kebabcase": "^4.1.1",
"lodash.throttle": "^4.1.1",
"next": "^12.0.7",
"next-pwa": "^5.4.4",
"postcss": "^8.4.5",
"prism-react-renderer": "^1.2.1",
"prop-types": "^15.8.1",
"react": "17.0.2",
"react-collapsed": "^3.3.0",
"react-dom": "17.0.2",
"react-ga": "^3.3.0",
"react-json-view": "^1.21.3",
"react-use-clipboard": "^1.0.7",
"smoothscroll-polyfill": "^0.4.4",
"unzipper": "^0.10.11",
"zustand": "^3.6.8"
},
"devDependencies": {
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@next/mdx": "^12.0.7",
"@types/classnames": "^2.3.1",
"@types/clean-css": "^4.2.5",
"@types/fs-extra": "^9.0.13",
"@types/lodash.kebabcase": "^4.1.6",
"@types/lodash.throttle": "^4.1.6",
"@types/mdx-js__react": "^1.5.5",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/smoothscroll-polyfill": "^0.3.1",
"@types/unzipper": "^0.10.5",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.6.0",
"eslint-config-next": "^12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"fast-glob": "^3.2.9",
"fs-extra": "^10.0.0",
"husky": "^7.0.4",
"lint-staged": ">=10",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.2.0",
"prettier": "^2.5.1",
"raw-loader": "^4.0.2",
"typescript": "^4.5.4"
},
"browserslist": {
"production": [
"cover 95%",
"last 4 versions",
"not ie <= 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,md,json,scss}": "prettier --write"
}
}