-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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": "helping-hands",
"version": "0.0.1",
"description": "A HackTheCrisis: NZ App",
"repository": {
"type": "git",
"url": "git+https://github.com/olafwrieden/helping-hands.git"
},
"author": "Olaf Wrieden",
"license": "MIT",
"bugs": {
"url": "https://github.com/olafwrieden/helping-hands/issues"
},
"homepage": "https://github.com/olafwrieden/helping-hands#readme",
"devDependencies": {
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.5",
"ts-node": "8.8.2",
"typescript": "3.8.3"
},
"dependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.6",
"@types/node": "^13.13.0",
"@types/passport": "^1.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.4.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pg": "^8.0.2",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.24",
"uuid": "^7.0.3"
},
"scripts": {
"dev": "run-p dev:**",
"start": "node build/server.js",
"dev:server": "nodemon --watch '**/*.ts' --exec 'ts-node' src/server.ts",
"dev:app": "cd client && npm start",
"build": "tsc",
"heroku-postbuild": "tsc && cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
}
}