-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.21 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.21 KB
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
{
"name": "date-painter",
"version": "1.0.0",
"description": "A social group date availability tool",
"private": true,
"license": "BSD-2-Clause",
"scripts": {
"start": "webpack serve --mode development --open --hot",
"build-dev": "webpack --mode development",
"build": "webpack --mode production",
"deploy": "firebase deploy --only hosting",
"deployFunctions": "firebase deploy --only functions"
},
"dependencies": {
"firebase": "^9.1.1",
"mnemonic-words": "^1.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-multi-date-picker": "^2.9.8",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^5.2.4",
"dotenv-webpack": "^7.0.2",
"html-webpack-plugin": "^5.3.1",
"postcss-loader": "^6.1.0",
"sass": "^1.42.1",
"sass-loader": "^11.0.1",
"source-map-loader": "^2.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}