-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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
{
"name": "mvp",
"version": "1.0.0",
"description": "This project is a QR code-based file system app.",
"main": "index.js",
"scripts": {
"server-dev": "nodemon server/index.js",
"client-dev": "webpack --mode development --watch",
"deploy": "webpack --mode production && nodemon server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonahchoi/MVP.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jonahchoi/MVP/issues"
},
"homepage": "https://github.com/jonahchoi/MVP#readme",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.2.1",
"axios": "^1.1.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"firebase": "^9.14.0",
"framer-motion": "^7.6.7",
"qrcode": "^1.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-individual-character-input-boxes": "^1.2.1",
"react-zxing": "^1.0.5",
"short-unique-id": "^4.4.4",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.0",
"connect-livereload": "^0.6.1",
"css-loader": "^6.7.2",
"dotenv-webpack": "^8.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"livereload": "^0.9.3",
"react-router-dom": "^6.4.3",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}