-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.86 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
{
"name": "design-sparx-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"prettier:write": "npx prettier . --write",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@mantine/carousel": "^7.5.0",
"@mantine/code-highlight": "^7.5.0",
"@mantine/core": "^7.5.0",
"@mantine/dates": "^7.5.0",
"@mantine/form": "^7.5.0",
"@mantine/hooks": "^7.5.0",
"@mantine/modals": "^7.5.0",
"@mantine/notifications": "^7.5.0",
"@mantine/nprogress": "^7.5.0",
"@mantine/spotlight": "^7.5.0",
"@mantine/tiptap": "^7.5.0",
"@tabler/icons-react": "^2.46.0",
"@tiptap/extension-link": "^2.2.1",
"@tiptap/react": "^2.2.1",
"@tiptap/starter-kit": "^2.2.1",
"dayjs": "^1.11.10",
"embla-carousel-react": "8.0.0-rc22",
"framer-motion": "^11.0.3",
"next": "14.1.0",
"react": "^18",
"react-dom": "^18",
"react-scrollchor": "^7.0.2"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"babel-jest": "^29.7.0",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"husky": "^9.0.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"postcss-preset-mantine": "^1.12.3",
"postcss-simple-vars": "^7.0.1",
"prettier": "3.2.4",
"react-test-renderer": "^18.2.0",
"typescript": "^5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}