-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.53 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
86
87
88
89
90
91
92
93
94
95
{
"name": "@multei/api",
"version": "0.1.0",
"description": "Multei! API",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/multei/api.git"
},
"bugs": {
"url": "https://github.com/multei/api/issues"
},
"homepage": "https://github.com/multei/api#readme",
"private": false,
"scripts": {
"ci": "npm run testc && npm run codecov",
"codecov": "codecov",
"debug": "DEBUG=app:*,openalpr:* nodemon --exec \"clear && ./bin/www\" --signal SIGTERM",
"deploy:heroku": "git push heroku master",
"develop:heroku": "nodemon --exec \"clear && heroku local\" --signal SIGTERM",
"heroku-postbuild": "node scripts/gcp-setup.js && npm run knex:migrate:latest",
"install:clean": "rm -rf node_modules && npm install",
"knex:migrate:latest": "knex migrate:latest",
"knex:seed:run": "knex seed:run",
"open:heroku": "open http://localhost:5000",
"start": "node ./bin/www",
"test": "jest",
"testc": "jest --coverage",
"testm": "stryker run",
"testu": "jest -u",
"testw": "jest --watch",
"test:staged": "sh bin/test-staged.sh"
},
"author": "Multei!",
"contributors": [
{
"name": "Beto Maia",
"email": "beto@multei.com.br",
"url": "https://github.com/adalbertomaia"
},
{
"name": "Jimmy Andrade",
"email": "jimmy@multei.com.br",
"url": "https://github.com/jimmyandrade"
}
],
"license": "MIT",
"keywords": [
"multei",
"api",
"node.js"
],
"dependencies": {
"@google-cloud/storage": "5.6.0",
"body-parser": "1.19.0",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"debug": "4.3.1",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-api-problem": "2.0.5",
"express-validator": "6.7.0",
"http-errors": "1.8.0",
"knex": "0.21.12",
"morgan": "1.10.0",
"multer": "1.4.2",
"openalpr": "0.3.4-alpha.2",
"pg": "8.5.1"
},
"devDependencies": {
"@stryker-mutator/core": "4.1.2",
"@stryker-mutator/html-reporter": "3.1.0",
"@stryker-mutator/javascript-mutator": "4.0.0",
"@stryker-mutator/jest-runner": "4.1.2",
"@types/express": "4.17.9",
"codecov": "3.8.1",
"eslint": "7.15.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-security": "1.4.0",
"jest": "26.6.3",
"nodemon": "2.0.6",
"pg": "8.5.1",
"supertest": "6.0.1"
},
"engines": {
"node": ">=13.9.0",
"npm": ">=6.13.7"
},
"husky": {
"hooks": {
"pre-commit": "npm run test:staged",
"pre-push": "npm test"
}
}
}