-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.53 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
{
"name": "opensource-acm-ucla",
"author": "@uclaacm",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "eslint . --ext ts --ext tsx --ext js --fix",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test",
"pre-commit": "yarn format",
"prepare": "husky install"
},
"dependencies": {
"@octokit/core": "^3.5.1",
"@octokit/plugin-paginate-rest": "^2.21.3",
"@octokit/rest": "^21.0.2",
"@octokit/types": "^13.5.0",
"@octokit/webhooks-types": "^7.5.1",
"@types/react-dom": "^18.3.0",
"moment": "^2.30.1",
"next": "^14.2.5",
"next-seo": "^6.5.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.3",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^18.14.2",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^29.7.0",
"eslint": "^7.32.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.28.0",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^15.2.7",
"typescript": "^5.5.4"
}
}