-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.12 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
{
"name": "front-end-scaffold",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"lint": "next lint",
"build": "next build",
"start": "next start",
"check-types": "tsc --noEmit",
"test": "start-server-and-test 'yarn dev' 3000 'yarn cypress:run'",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"postinstall": "husky install"
},
"engines": {
"node": "~18"
},
"packageManager": "[email protected]",
"dependencies": {
"@artsy/fresnel": "6.1.0",
"@dnd-kit/core": "6.0.8",
"@dnd-kit/modifiers": "6.0.1",
"@dnd-kit/sortable": "7.0.2",
"@egjs/react-flicking": "4.11.0",
"@mdx-js/loader": "2.3.0",
"@mdx-js/react": "2.3.0",
"@next/mdx": "13.2.4",
"@radix-ui/react-slot": "^1.0.2",
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/line-clamp": "0.4.2",
"@tailwindcss/typography": "0.5.9",
"@tanstack/react-query": "4.26.1",
"axios": "1.3.4",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"framer-motion": "10.12.16",
"lucide-react": "^0.257.0",
"mapbox-gl": "npm:[email protected]",
"maplibre-gl": "2.1.9",
"next": "13.2.4",
"postcss": "8.4.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-map-gl": "7.0.25",
"tailwind-merge": "^1.13.2",
"tailwindcss": "3.2.7",
"tailwindcss-animate": "^1.0.6",
"usehooks-ts": "2.9.1"
},
"devDependencies": {
"@types/google.analytics": "0.0.42",
"@types/node": "18.15.0",
"@types/react": "18.2.30",
"@types/react-dom": "18.2.14",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.8.0",
"autoprefixer": "10.4.14",
"cypress": "12.7.0",
"eslint": "8.32.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "6.0.0",
"prettier": "2.8.3",
"prettier-plugin-tailwindcss": "0.2.1",
"start-server-and-test": "1.12.1",
"svg-sprite-loader": "6.0.11",
"svgo": "3.0.2",
"svgo-loader": "3.0.3",
"typescript": "5.2.2"
},
"husky": {
"pre-commit": "yarn lint"
}
}