This repository has been archived by the owner on Jan 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
70 lines (70 loc) · 2.06 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
{
"name": "open-source-help-wanted",
"version": "2.0.0",
"description": "Find issues to work on with the labels and keywords you specify.",
"private": true,
"dependencies": {
"@octokit/rest": "^19.0.3",
"@types/aws-lambda": "^8.10.102",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.14",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/react-helmet": "^6.1.5",
"axios": "^0.27.2",
"chromatism": "^3.0.0",
"dotenv": "^16.0.1",
"moment": "^2.29.4",
"netlify-lambda": "^2.0.15",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga4": "^1.4.1",
"react-helmet": "^6.1.0",
"react-markdown": "^8.0.3",
"react-moment": "^1.1.2",
"react-router-dom": "^6.3.0",
"react-toastify": "^9.0.8",
"react-toggle-switch": "^3.0.4",
"showdown": "^2.1.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"@testing-library/react": "^13.3.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"mockdate": "^3.0.5",
"prettier": "^2.7.1",
"react-scripts": "^5.0.1",
"react-test-renderer": "^18.2.0"
},
"scripts": {
"start": "run-p start:**",
"build": "run-p build:**",
"start:app": "react-scripts start",
"build:app": "react-scripts build",
"test:app": "react-scripts test --env=jsdom",
"eject:app": "react-scripts eject",
"start:lambda": "npm run build:lambda && netlify-lambda serve src/api",
"build:lambda": "netlify-lambda build src/api",
"lint": "eslint src",
"format-check": "prettier 'src/**/*.{js,css,json}' --check",
"format": "prettier 'src/**/*.{js,css,json}' --write"
},
"proxy": "http://localhost:9000/",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jeffslofish/open-source-help-wanted.git"
},
"author": "Jeffrey Fisher",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeffslofish/open-source-help-wanted/issues"
}
}