-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
73 lines (73 loc) · 2.36 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
{
"name": "gdsc-space",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --check \"**/*.{js,jsx,ts,tsx}\"",
"prettier:fix": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"svg": "npx @svgr/cli src/components/icons --out-dir src/components/icons --typescript",
"test": "jest --watch",
"test:ci": "jest --ci",
"e2e:ci": "playwright test",
"e2e:inspect": "playwright test --ui",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"description": "GDSC CAU Space",
"keywords": [
"GDSC",
"CAU"
],
"dependencies": {
"@builder.io/partytown": "^0.8.0",
"@firebase/app": "^0.9.17",
"@firebase/firestore": "^4.1.2",
"@notionhq/client": "^2.2.12",
"encoding": "^0.1.13",
"firebase": "^10.3.0",
"next": "13.4.8",
"notion-client": "^6.16.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-notion-x": "^6.16.0",
"sharp": "^0.32.5",
"tailwind-scrollbar-hide": "^1.1.7"
},
"devDependencies": {
"@playwright/test": "^1.35.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/node": "20.3.3",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@types/testing-library__jest-dom": "5.14.6",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"autoprefixer": "10.4.14",
"eslint": "8.44.0",
"eslint-config-next": "13.4.8",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-tailwindcss": "^3.13.0",
"husky": "^8.0.3",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"lint-staged": "^13.2.3",
"postcss": "8.4.24",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "3.3.2",
"tailwindcss-3d": "^0.3.0",
"typescript": "5.1.6"
},
"engines": {
"node": ">=18.0.0"
}
}