-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.35 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
{
"name": "grocery-store",
"version": "1.0.0",
"description": "Repository was created as a part of university practise and as an example of a \"store\" that can integrate the ref-app (https://github.com/Andrew15-5/ref-app).",
"main": "dist/index.js",
"scripts": {
"dev": "export $(cat .env) && npx tsnd --respawn src/index.ts",
"build": "npx tsc",
"start": "export $(cat .env) && node .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Andrew15-5/Grocery-Store.git"
},
"keywords": [
"grocery",
"store",
"university",
"practise"
],
"author": "Andrew15-5, CoolichWithYou, TaisiaOtroshenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/Andrew15-5/Grocery-Store/issues"
},
"homepage": "https://github.com/Andrew15-5/Grocery-Store#readme",
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^18.0.3",
"@types/node-fetch": "^2.6.2",
"@types/pg": "^8.6.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"argon2": "^0.28.7",
"cookie-parser": "^1.4.6",
"express": "^4.18.1",
"hbs": "^4.2.0",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.7",
"pg": "^8.7.3"
}
}