-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 979 Bytes
/
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
{
"name": "lerooftop",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "parcel build client/src/index.html --dist-dir client/dist",
"start": "node server/index.js",
"dev": "concurrently \"parcel watch client/src/index.html --dist-dir client/dist\" \"nodemon server/index.js\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"@parcel/transformer-svg-react": "^2.6.0",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"concurrently": "^7.2.1",
"nodemon": "^2.0.16",
"parcel": "^2.6.0",
"process": "^0.11.10"
},
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"axios": "^0.27.2",
"cors": "^2.8.5",
"express": "^4.18.1",
"openai": "^3.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"typescript": "^4.7.3"
}
}