This repository was archived by the owner on Jun 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.21 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
{
"name": "@3n3a/wordpress-scanner-ui",
"version": "3.0.0",
"private": true,
"scripts": {
"dev": "wrangler pages 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}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"test": "npm run prettier:check && npm run lint && npm run typecheck && npm run jest"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.4.0",
"@mantine/carousel": "5.10.4",
"@mantine/core": "5.10.4",
"@mantine/form": "^5.8.3",
"@mantine/hooks": "5.10.4",
"@mantine/next": "5.10.4",
"@mantine/notifications": "5.10.4",
"@mantine/prism": "5.10.4",
"@next/bundle-analyzer": "^13.0.0",
"@tanstack/react-query": "^4.18.0",
"axios": "^1.2.0",
"cookies-next": "^2.1.1",
"embla-carousel-react": "^7.0.0",
"next": "13.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"tabler-icons-react": "^1.56.0"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@next/eslint-plugin-next": "^13.0.0",
"@testing-library/dom": "^8.12.0",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^14.0.4",
"@types/jest": "^29.0.0",
"@types/node": "^18.0.6",
"@types/react": "18.0.28",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"babel-loader": "^9.0.0",
"eslint": "^8.18.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-mantine": "2.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.0",
"eslint-plugin-testing-library": "^5.2.0",
"jest": "^29.0.0",
"prettier": "^2.6.2",
"ts-jest": "^29.0.0",
"typescript": "4.9.5",
"wrangler": "^2.4.4"
}
}