-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "ski-wax-app-mvp",
"description": "App using weather API data to recommend ski wax based on user input of location and date/time of ski",
"version": "1.0.0",
"main": "server/index.js",
"scripts": {
"dev": "concurrently \"nodemon server/index.js\" \"webpack serve --mode development --open\"",
"start": "webpack --mode production && node server/index.js",
"build": "webpack --mode production"
},
"keywords": [
"ski",
"wax",
"weather",
"recommendation"
],
"author": "Colin Rooney",
"license": "MIT",
"dependencies": {
"@supabase/supabase-js": "^2.44.2",
"axios": "^1.7.2",
"bootstrap": "^5.3.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"node-fetch": "^3.3.2",
"pg": "^8.12.0",
"react": "^18.3.1",
"react-bootstrap": "^2.10.4",
"react-dom": "^18.3.1",
"react-router-dom": "^6.24.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^8.2.2",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.1.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"nodemon": "^3.1.4",
"style-loader": "^4.0.0",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}