-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.37 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
{
"name": "api",
"version": "0.4.2",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "sucrase-node src/index.js",
"dev": "nodemon --ignore 'src/tests/*.js' --exec sucrase-node src/index.js",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"build": "npx knex migrate:rollback && npx knex migrate:latest && npx knex seed:run",
"test": "mocha --require sucrase/register --reporter spec --exit src/tests/index.spec.js"
},
"keywords": [],
"author": "Rômulo Cabral Santos <romulosanttos1@gmail.com>",
"license": "GNU Affero General Public License v3.0",
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bunyan": "^1.8.14",
"bunyan-format": "^0.2.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"knex": "^0.21.1",
"moment-timezone": "^0.5.31",
"morgan": "^1.10.0",
"node-fetch": "^2.6.0",
"pg": "^8.2.1",
"query-string": "^6.13.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "7.5.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"mocha": "^8.0.1",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"sucrase": "^3.15.0",
"supertest": "^4.0.2"
}
}