-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.39 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "onesg-app",
"version": "0.0.0",
"description": "first",
"main": "src/index.js",
"engines": {
"node": "12.18.4"
},
"scripts": {
"heroku-prebuild": "node scripts/generateKeypair.js",
"heroku-postbuild": "knex migrate:latest",
"start": "node src/index.js",
"dev": "nodemon src/index.js --exec 'npm run lint && node'",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"prettier": "prettier --write src/**/*.{js,css}",
"db-migrate": "npx knex migrate:latest",
"db-make-table": "npx knex migrate:make ",
"generate-keys": "node scripts/generateKeypair.js",
"seed-staff": "npx knex seed:run --specific=staff.js",
"seed-beneficiary": "npx knex seed:run --specific=beneficiaries.js",
"seed-referee": "npx knex seed:run --specific=referees.js",
"seed-case": "npx knex seed:run --specific=case.js",
"seed-requestType": "npx knex seed:run --specific=requestType.js",
"seed-request": "npx knex seed:run --specific=request.js",
"seed-comments": "knex seed:run --specific=comments.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TechLadies/onesg-app.git"
},
"author": "yt",
"license": "ISC",
"bugs": {
"url": "https://github.com/TechLadies/onesg-app/issues"
},
"homepage": "https://github.com/TechLadies/onesg-app#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"jest": "^26.6.3",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.6",
"morgan": "^1.10.0",
"objection": "^2.2.3",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"pg": "^8.4.2",
"supertest": "^6.0.1",
"xss": "^1.0.8"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint . --fix"
]
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"keywords": []
}