-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.01 KB
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
{
"name": "otterkit.com",
"version": "1.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"export": "next build && next export",
"lint": "next lint",
"jest": "jest",
"jest:watch": "jest --watch",
"prettier:check": "prettier --check \"**/*.{ts,tsx,md,mdx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx,md,mdx}\"",
"test": "npm run prettier:check && npm run lint && npm run typecheck && npm run jest"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.10.0",
"@mantine/core": "5.4.2",
"@mantine/hooks": "5.4.2",
"@mantine/next": "5.4.2",
"@mantine/prism": "5.4.2",
"@mdx-js/loader": "^2.1.3",
"@mdx-js/react": "^2.1.3",
"@next/bundle-analyzer": "^12.3.1",
"@next/mdx": "^12.3.1",
"@tabler/icons": "^1.101.0",
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"remark-gfm": "^3.0.1"
},
"devDependencies": {
"@babel/core": "latest",
"@next/eslint-plugin-next": "latest",
"@testing-library/dom": "latest",
"@testing-library/jest-dom": "latest",
"@testing-library/react": "latest",
"@testing-library/user-event": "latest",
"@types/jest": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"babel-loader": "latest",
"eslint": "latest",
"eslint-config-airbnb": "latest",
"eslint-config-airbnb-typescript": "latest",
"eslint-config-mantine": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-jsx-a11y": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "latest",
"eslint-plugin-testing-library": "latest",
"jest": "latest",
"prettier": "latest",
"ts-jest": "latest",
"typescript": "latest"
}
}