This repository has been archived by the owner on Nov 21, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 363
/
Copy pathpackage.json
90 lines (90 loc) · 2.72 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "hacktoberfest-checker",
"version": "6.0.0",
"description": "Small app to see if you have fulfilled the requirements for a Hacktoberfest t-shirt",
"main": "index.js",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"start": "npm run build && npm run start-server",
"start-development": "npm-run-all -l -p \"start-frontend\" \"start-server\"",
"dev": "npm run start-development",
"start-frontend": "react-scripts start",
"start-server": "npm run build-server && node index.js",
"build": "react-scripts build",
"build-server": "npx tsc --project ./api",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"tailwind-gen": "postcss ./src/style.css -o ./src/index.css",
"tailwind-gen-watch": "postcss --watch ./src/style.css -o ./src/index.css",
"prettier": "prettier --check \"{src,api}/**/*.js\"",
"prettier-fix": "prettier --write \"{src,api}/**/*.js\""
},
"keywords": [
"hacktoberfest"
],
"author": "Ian Jenkins",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@gitbeaker/node": "^35.8.0",
"@octokit/rest": "^19.0.5",
"body-parser": "^1.20.1",
"compression": "^1.7.4",
"cors": "^2.8.4",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"immer": ">=9.0.16",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"postcss-url": "^10.1.3",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.4.3",
"react-scripts": "5.0.1",
"use-color-scheme": "^1.1.3"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.175",
"@types/morgan": "^1.9.3",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"autoprefixer": "^10.0.1",
"eslint": "^7.32.0",
"husky": "^4.3.0",
"node-forge": ">=1.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.13",
"postcss-cli": "^8.1.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"serialize-javascript": "^5.0.1",
"tailwindcss": "^3.0.23",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "npm run prettier"
}
},
"repository": "git@github.com:jenkoian/hacktoberfest-checker.git",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}