-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.99 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
{
"name": "frontend_2021",
"version": "1.0.0",
"description": "Front end UI for RU Hacks",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --open --mode development",
"build": "webpack --mode production",
"lint": "eslint \"*/**/*.{js,ts,tsx}\" --quiet --fix",
"format": "prettier-eslint --write \"{,!(node_modules)/**/}*.{js,jsx}\"",
"prepare": "husky install",
"deploy": "firebase deploy --only hosting",
"emulator": "firebase emulators:start --import ./functions/back_up"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruhacks/Frontend_2021.git"
},
"keywords": [
"ruhacks"
],
"author": "Dan Stingaciu",
"license": "ISC",
"bugs": {
"url": "https://github.com/ruhacks/Frontend_2021/issues"
},
"homepage": "https://github.com/ruhacks/Frontend_2021#readme",
"dependencies": {
"@babel/core": "^7.13.8",
"@babel/eslint-parser": "^7.13.8",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.11.0",
"@material-ui/data-grid": "^4.0.0-alpha.22",
"@material-ui/icons": "^4.9.1",
"@material-ui/pickers": "^3.3.10",
"axios": "^0.21.1",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"cookie-parser": "^1.4.5",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^5.0.1",
"date-fns": "^2.19.0",
"discord-oauth2": "^2.6.0",
"dotenv": "^8.2.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"file-loader": "^6.2.0",
"firebase": "^8.3.0",
"firebaseui": "^4.7.1",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"js-cookie": "^2.2.1",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"nodemon": "^2.0.4",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^5.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-places-autocomplete": "^7.3.0",
"react-redux": "^7.2.2",
"react-redux-firebase": "^3.8.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-firestore": "^0.15.0",
"redux-thunk": "^2.3.0",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7",
"url-loader": "^4.1.1",
"validator": "^13.5.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"devDependencies": {
"eslint-plugin-react": "^7.22.0",
"husky": "^5.1.3",
"node-sass": "^5.0.0",
"sass-loader": "^10.1.1",
"webpack": "^4.46.0"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}