-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 KB
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
51
52
{
"name": "work-app",
"version": "0.0.1",
"description": "Work application for tracking workentries and workjobs",
"private": true,
"main": "./dist/src/index.js",
"scripts": {
"start": "nodemon",
"start:all": "nodemon & cd ./client && ng serve",
"build:all": "tsc && cd ./client && ng build --prod",
"deploy:dev": "git push heroku-dev development:master --force",
"postinstall": "tsc",
"heroku-postbuild": "cd client && npm i",
"deploy-aws": "sh ./deploy-aws.sh"
},
"author": "Roman Tcharni",
"license": "ISC",
"dependencies": {
"bcrypt": "^4.0.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.4.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.19",
"module-alias": "^2.2.2",
"moment": "^2.27.0",
"nodemailer": "^6.4.11",
"pg": "^8.5.1"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.3",
"@types/express-validator": "^3.0.0",
"@types/jsonwebtoken": "^8.3.9",
"@types/module-alias": "^2.0.0",
"@types/node": "^14.14.35",
"@types/nodemailer": "^6.4.0",
"nodemon": "^2.0.2",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
},
"engines": {
"node": "12.18.3",
"npm": "6.14.6"
}
}