-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "grocery-inventory",
"version": "1.0.0",
"description": "grocery-inventory",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/index.js",
"start:dev": "npx nodemon ./dist/index.js",
"build": "npx tsc",
"build:dev": "npx tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ankithans/grocery-inventory.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ankithans/grocery-inventory/issues"
},
"homepage": "https://github.com/ankithans/grocery-inventory#readme",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.9",
"@types/express-validator": "^3.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.10.1",
"@types/multer": "^1.4.4",
"@types/node": "^14.14.9",
"nodemon": "^2.0.6",
"tsc": "^1.20150623.0",
"typescript": "^4.1.2"
},
"dependencies": {
"@google-cloud/storage": "^5.5.0",
"@google-cloud/vision": "^2.1.2",
"@types/uuid": "^8.3.0",
"aws-sdk": "^2.796.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.15",
"multer": "^1.4.2"
}
}