-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "reporter-link-backend",
"version": "0.0.1",
"description": "API provider of journalists, news organisations and articles.",
"main": "dist/index.js",
"author": "Moop204",
"license": "MIT",
"dependencies": {
"@types/validator": "^13.6.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"fs": "^0.0.1-security",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.6.5",
"swagger-ui-express": "^4.1.6",
"typescript": "^4.4.2"
},
"scripts": {
"start": "ts-node ./src/index.ts",
"server-start": "node ./dist/index.js",
"postinstall": "tsc",
"build": "tsc",
"watch-node": "nodemon dist/index.js",
"watch-ts": "tsc -w",
"deploy": "git add . && git commit -m Heroku && git push heroku main"
},
"engines": {
"node": "12.18.1"
},
"devDependencies": {
"@types/node": "^16.7.10",
"@types/validator": "^13.6.3",
"ts-node": "^10.2.1"
},
"repository": "git@github.com:Moop204/journa-link-backend.git"
}