-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"name": "ref-app",
"version": "1.0.0",
"description": "Repository was created as a part of university practise and as an example of the \"ref-app\" that can be integrated to a store (<https://github.com/Andrew15-5/Grocery-Store>).",
"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/ref-app.git"
},
"keywords": [
"ref",
"referral",
"university",
"practise"
],
"author": "Andrew15-5, CoolichWithYou, TaisiaOtroshenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/Andrew15-5/ref-app/issues"
},
"homepage": "https://github.com/Andrew15-5/ref-app#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.0.3",
"@types/pg": "^8.6.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"dotenv": "^16.0.1",
"express": "^4.18.1",
"pg": "^8.7.3"
}
}