-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 2.51 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
{
"name": "cheatsheets",
"version": "1.4.0",
"license": "MIT",
"author": {
"name": "jiangweixian"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint:fix": "eslint . --fix",
"prepare": "husky install",
"release": "pnpx changeset version"
},
"lint-staged": {
"**/**/*.{js,ts,tsx,vue,json}": [
"eslint --fix"
]
},
"dependencies": {
"@lotips/core": "0.8.3-alpha.2",
"@omcs/request": "1.5.3",
"@react-spring/web": "9.2.4",
"algoliasearch": "4.10.5",
"axios": "0.24.0",
"classnames": "2.2.6",
"copy-to-clipboard": "3.3.1",
"cors": "2.8.5",
"dayjs": "1.8.24",
"html2canvas": "1.0.0-rc.7",
"lodash.compact": "3.0.1",
"lodash.debounce": "4.0.8",
"lodash.omit": "4.5.0",
"lodash.sample": "4.2.1",
"markdown-it": "10.0.0",
"markdown-it-todo": "1.0.5",
"mayumi": "0.0.2",
"medium-zoom": "1.0.5",
"next": "11.1.2",
"nprogress": "0.2.0",
"prismjs": "1.21.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-infinite-scroller": "1.2.4",
"react-responsive-masonry": "2.1.1",
"scroll-into-view-if-needed": "2.2.29",
"swr": "1.0.1",
"tslib": "2.3.1"
},
"devDependencies": {
"@aiou/eslint-config": "^0.5.1",
"@changesets/cli": "2.17.0",
"@next/eslint-plugin-next": "11.1.2",
"@stitches/react": "1.2.7",
"@types/classnames": "2.2.10",
"@types/cors": "2.8.12",
"@types/lodash.compact": "3.0.6",
"@types/lodash.debounce": "4.0.6",
"@types/lodash.sample": "4.2.6",
"@types/markdown-it": "0.0.9",
"@types/node": "12.7.8",
"@types/nprogress": "0.2.0",
"@types/prismjs": "1.16.0",
"@types/react": "17.0.27",
"@types/react-dom": "17.0.9",
"@types/react-infinite-scroller": "1.2.1",
"@types/react-instantsearch-dom": "6.12.0",
"autoprefixer": "9.7.6",
"babel-plugin-import": "1.13.3",
"babel-plugin-inline-react-svg": "1.1.1",
"babel-plugin-prismjs": "2.0.1",
"cross-env": "6.0.3",
"cz-emoji": "1.3.1",
"dotenv": "10.0.0",
"eslint": "8.11.0",
"git-url-parse": "^11.6.0",
"husky": "7.0.0",
"lint-staged": "11.1.2",
"next-images": "1.8.4",
"next-transpile-modules": "^8.0.0",
"postcss-extend": "1.0.5",
"postcss-extend-rule": "3.0.0",
"postcss-import": "12.0.1",
"prettier": "2.4.1",
"punycode": "^2.1.1",
"tailwindcss": "1.2.0",
"typescript": "4.4.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-emoji"
}
}
}