-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (84 loc) · 2.69 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
{
"name": "lille",
"version": "1.0.0",
"proxy": "http://localhost:5000",
"description": "Personal Management System",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.config.js",
"build-react": "webpack --config webpack.config.js",
"dev": "webpack serve --open",
"start": "node app.js",
"heroku-prebuild": "npm install --dev",
"heroku-postbuild": "npm i && npm run build"
},
"author": "Maxine",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@fullcalendar/bootstrap": "^5.8.0",
"@fullcalendar/core": "^5.7.2",
"@fullcalendar/daygrid": "^5.7.2",
"@fullcalendar/google-calendar": "^5.7.2",
"@fullcalendar/icalendar": "^5.7.2",
"@fullcalendar/interaction": "^5.7.2",
"@fullcalendar/list": "^5.7.2",
"@fullcalendar/react": "^5.7.0",
"@fullcalendar/timegrid": "^5.7.2",
"@notionhq/client": "^0.4.9",
"@popperjs/core": "^2.9.2",
"@wojtekmaj/react-datetimerange-picker": "^3.4.2",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"bootstrap": "^5.1.1",
"bootswatch": "^5.1.1",
"chart.js": "^3.5.1",
"cheerio": "^1.0.0-rc.10",
"core-js": "^3.14.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"googleapis": "^39.2.0",
"jsonwebtoken": "^8.5.1",
"passport": "^0.5.0",
"passport-google-oauth": "^2.0.0",
"pg": "^8.7.1",
"plotly.js": "^2.5.1",
"react": "^17.0.2",
"react-bootstrap": "^1.6.4",
"react-bootstrap-table-next": "^4.0.3",
"react-chartjs-2": "^3.2.0",
"react-dom": "^17.0.2",
"react-plotly.js": "^2.5.1",
"react-router-dom": "^5.3.0",
"react-select": "^5.1.0",
"react-tiny-fab": "^4.0.3",
"react-toastify": "^8.0.3",
"regenerator-runtime": "^0.13.7",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"sass": "^1.49.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-throw-expressions": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"css-loader": "^6.5.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.56.0",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.0"
}
}