This repository has been archived by the owner on Dec 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
90 lines (90 loc) · 2.54 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": "badging-website",
"version": "1.0.0",
"description": "A Platform for the CHAOSS DEI Badging Project",
"main": "index.js",
"scripts": {
"lint": "npx eslint .",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npm run prettier -- --write",
"stylelint": "npx stylelint \"**/*.css\" --fix",
"format": "npm run prettier:fix && npm run lint:fix && npm run stylelint",
"build": "webpack --mode production",
"dev": "webpack serve",
"start": "node server.js",
"test": "echo \"Error: no test specified\"",
"precommit": "lint-staged",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"dependencies": {
"@chakra-ui/react": "2.3.6",
"@emotion/react": "11.10.4",
"@emotion/styled": "11.10.4",
"@fortawesome/fontawesome-svg-core": "6.2.0",
"@fortawesome/free-brands-svg-icons": "6.2.0",
"@fortawesome/free-solid-svg-icons": "6.2.0",
"@fortawesome/react-fontawesome": "0.2.0",
"@mui/icons-material": "5.10.6",
"@mui/material": "5.10.8",
"axios": "1.3.4",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"formik": "2.2.9",
"framer-motion": "7.5.4",
"prop-types": "15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "4.8.0",
"react-paginate": "8.1.4",
"react-read-more-read-less": "1.0.7",
"react-router-dom": "6.4.1",
"react-scripts": "5.0.1",
"yup": "1.1.1"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@svgr/webpack": "^6.3.1",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.8",
"file-loader": "^6.2.0",
"html-webpack-plugin": "5.5.1",
"husky": "^8.0.0",
"lint-staged": "13.0.3",
"nodemon": "^2.0.20",
"prettier": "2.7.1",
"sass": "1.55.0",
"sass-loader": "13.0.2",
"style-loader": "^3.3.1",
"stylelint": "15.6.0",
"stylelint-config-standard": "33.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"engines": {
"node": ">= 16.15.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,html,css,scss}": [
"npm run format",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
}
}