This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
75 lines (75 loc) · 2.05 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
{
"name": "HackRPI-Website2022",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack ",
"start": "webpack serve --mode development",
"serve": "node ./backend/index.js",
"configure-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/hack-rpi/HackRPI-Website2022.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hack-rpi/HackRPI-Website2022/issues"
},
"homepage": "https://github.com/hack-rpi/HackRPI-Website2022#readme",
"dependencies": {
"bootstrap": "^5.3.2",
"express": "^4.18.2",
"react": "^18.2.0",
"react-bootstrap": "^2.9.1",
"react-burger-menu": "^3.0.9",
"react-dom": "^18.2.0",
"react-globe.gl": "^2.27.0",
"react-iframe": "^1.8.5",
"react-router": "^6.17.0",
"react-router-bootstrap": "^0.26.2",
"react-router-dom": "^6.17.0",
"react-spring": "^9.7.3",
"styled-components": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier-eslint-cli": "^8.0.1",
"style-loader": "^3.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"lint-staged": {
"**/*.{js,jsx,json}": [
"eslint . --fix",
"prettier --write ."
],
"src/**/*.{html,css}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}