-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
96 lines (96 loc) · 2.79 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
91
92
93
94
95
96
{
"name": "project-badging",
"version": "1.0.0",
"description": "Website for DEI Project Badging with CHAOSS",
"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 --allow-empty-input",
"format": "npm run prettier:fix && npm run lint:fix && npm run stylelint",
"build": "webpack --config webpack.prod.js",
"build:staging": "webpack --config webpack.staging.js",
"dev": "webpack serve --config webpack.dev.js",
"test": "echo \"Error: no test specified\"",
"precommit": "lint-staged",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/badging/badging.git"
},
"author": "AllInOpenSource | CHAOSS",
"license": "MIT",
"bugs": {
"url": "https://github.com/badging/badging/issues"
},
"homepage": "https://github.com/badging/badging#readme",
"dependencies": {
"@emotion/react": "11.11.0",
"@emotion/styled": "11.11.0",
"@mui/icons-material": "5.11.16",
"@mui/material": "5.13.1",
"@tanstack/react-query": "5.8.1",
"final-form": "4.20.9",
"material-react-table": "1.11.4",
"mdbreact": "5.2.0",
"prop-types": "15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-final-form": "6.5.9",
"react-hook-form": "7.50.1",
"react-responsive": "9.0.2",
"react-router-dom": "^6.10.0",
"react-scripts": "^5.0.1",
"remarkable": "2.0.1",
"webpack-merge": "5.10.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@svgr/webpack": "^7.0.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"dotenv": "16.3.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "8.0.3",
"lint-staged": "^13.2.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"sass": "^1.62.0",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"stylelint": "^15.4.0",
"stylelint-config-standard": "33.0.0",
"stylelint-scss": "4.6.0",
"svg-url-loader": "8.0.0",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2"
},
"engines": {
"node": ">= 16.15.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,html,css,scss}": [
"npm run format -v",
"git add -v"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit -v"
}
}
}