-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "gdsc-um-homesite",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write src/**/*.{js,jsx}",
"format:check": "prettier --check src/**/*.{js,jsx}",
"test": "jest",
"test:watch": "jest --watch",
"lhci:collect": "lhci collect --url http://gdsc-um.org"
},
"dependencies": {
"autoprefixer": "10.4.14",
"eslint": "8.41.0",
"eslint-config-next": "13.4.3",
"googleapis": "^118.0.0",
"gray-matter": "^4.0.3",
"next": "13.4.3",
"next-safe": "^3.4.1",
"postcss": "8.4.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.7",
"tailwindcss": "3.3.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@lhci/cli": "^0.12.0",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"babel-jest": "^29.5.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.2",
"next-sitemap": "^4.1.3",
"prettier": "^2.8.8"
}
}