-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "api-backend",
"version": "1.0.0",
"description": "An api backend",
"main": "index.js",
"scripts": {
"start": "node api/app.js",
"dev": "nodemon -r dotenv/config api/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd client && npm install && npm run build"
},
"author": "Edgardo Molina",
"license": "ISC",
"dependencies": {
"@chakra-ui/react": "^1.5.1",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.3.0",
"@react-three/drei": "^4.3.2",
"bcryptjs": "^2.4.3",
"express": "^4.17.1",
"firebase": "^8.3.3",
"framer-motion": "^4.1.3",
"gltf-loader": "^0.1.0",
"morgan": "^1.10.0",
"pg": "^8.4.1",
"pg-hstore": "^2.3.3",
"react-globe": "^5.0.2",
"react-globe.gl": "^2.18.1",
"react-spring": "^9.1.1",
"react-three-fiber": "^6.0.13",
"sequelize": "^5.22.3",
"socket.io": "^4.1.1",
"sqlite3": "^4.2.0",
"three-fbx-loader": "^1.0.3",
"three-gltf-loader": "^1.111.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"nodemon": "^2.0.7"
},
"nodemonConfig": {
"ignore": [
"client/"
]
}
}