-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.79 KB
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
{
"name": "gitscore-copilot",
"version": "0.2.3",
"description": "A static GitHub repository scoring site that runs on GitHub Pages",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"gh-pages": "gh-pages -d out",
"deploy": "npm run build && npm run gh-pages"
},
"dependencies": {
"@octokit/graphql": "^7.0.2",
"mongodb": "^6.3.0",
"next": "^14.0.0",
"react": "^18.2.0",
"react-countup": "^6.4.2",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^16.3.0",
"autoprefixer": "^10.4.16",
"babel-jest": "^30.0.0",
"eslint": "^8.54.0",
"eslint-config-next": "^14.0.0",
"gh-pages": "^6.1.0",
"jest": "^30.0.0",
"jest-environment-jsdom": "^29.7.0",
"node-mocks-http": "^1.17.2",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/$1"
},
"transform": {
"^.+\\.(js|jsx)$": [
"babel-jest",
{
"presets": [
"next/babel"
]
}
]
},
"testPathIgnorePatterns": [
"<rootDir>/.next/",
"<rootDir>/out/"
],
"moduleFileExtensions": [
"js",
"jsx",
"json",
"node"
]
}
}