-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "lost-pet-api",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"sync:db": "ts-node ./server/sync.ts",
"dev:fe": "parcel serve ./public/index.html",
"dev:be": "nodemon --watch './server/**/*' -e ts --exec 'ts-node ./server/dev.ts'",
"dev": "yarn concurrently 'yarn dev:fe' 'yarn dev:be'",
"build:be": "tsc",
"build:fe": "parcel build ./public/index.html --dist-dir ./dist",
"build": "yarn run build:fe && yarn run build:be",
"start": "node ./server-dist/index.js"
},
"devDependencies": {
"buffer": "^6.0.3",
"nodemon": "^2.0.16",
"parcel": "^2.6.2",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"url": "^0.11.0"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"@types/node": "^18.0.1",
"@vaadin/router": "^1.7.4",
"algoliasearch": "^4.13.1",
"cloudinary": "^1.30.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"dropzone": "^6.0.0-beta.2",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mapbox": "^1.0.0-beta10",
"mapbox-gl": "^2.9.2",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.21.0",
"tsc": "^2.0.4",
"typescript": "^4.7.4"
}
}