-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "ketofan-back-end",
"version": "1.0.0",
"description": "ketofan api",
"main": "./src/server.js",
"engines": {
"node": "14.x",
"npm": "6.x"
},
"dependencies": {
"@sendgrid/mail": "^7.4.4",
"bcryptjs": "^2.4.3",
"config": "^3.3.6",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-validator": "^6.11.1",
"http-status": "^1.5.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.4",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"pg": "^8.6.0",
"winston": "^3.3.3",
"cross-env": "^7.0.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/config": "0.0.38",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.23",
"@types/jsonwebtoken": "^8.5.1",
"@types/lodash": "^4.14.168",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.5",
"@types/node": "^15.6.1",
"@types/pg": "^8.6.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon -L ./src/server.ts",
"start": "cross-env NODE_ENV=production node ./dist/src/server.js",
"build": "tsc --project ./",
"test": "jest --watchAll --verbose --runInBand",
"migrate": "knex migrate:latest",
"unmigrate": "knex migrate:rollback",
"seed": "knex seed:run",
"db:create": "ts-node ./db/createDatabase",
"postinstall": "ts-node ./db/createDatabase"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fuboki10/Ketofan-Back-End.git"
},
"author": "fuboki10",
"license": "MIT",
"bugs": {
"url": "https://github.com/fuboki10/Ketofan-Back-End/issues"
},
"homepage": "https://github.com/fuboki10/Ketofan-Back-End#readme"
}