-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.23 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
{
"name": "desafio-final-mod-7",
"version": "1.0.0",
"repository": "https://github.com/MaxiJ16/lost-pet-app.git",
"author": "Maxi Jofré <maxijofre.c@gmail.com>",
"license": "MIT",
"scripts": {
"sync": "ts-node ./be-src/db/sync.ts",
"dev:be": "nodemon --watch ./be-src/**/* -e ts --exec ts-node ./be-src/index.ts",
"build:be": "tsc",
"dev:fe": "parcel serve ./fe-src/index.html --dist-dir ./fe-dist",
"build:fe": "parcel build ./fe-src/index.html --dist-dir ./fe-dist",
"build": "npm run build:be && npm run build:fe",
"start": "node ./be-dist/index.js"
},
"dependencies": {
"@sendgrid/mail": "^7.6.2",
"@types/node": "^17.0.31",
"@vaadin/router": "^1.7.4",
"algoliasearch": "^4.13.0",
"cloudinary": "^1.28.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"dropzone": "^6.0.0-beta.2",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"mapbox": "^1.0.0-beta10",
"mapbox-gl": "^2.7.0",
"nanoid": "^3.3.2",
"nodemon": "^2.0.15",
"parcel": "^2.0.0-rc.0",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.19.0",
"ts-node": "^10.9.1",
"typescript": "^4.6.3"
},
"devDependencies": {
"@parcel/transformer-image": "2.0.0-rc.0"
}
}