-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
{
"name": "api",
"version": "0.2.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "sucrase-node src/index.js",
"dev": "nodemon --exec sucrase-node src/index.js",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"test": "mocha --require sucrase/register --reporter spec --exit src/test/index.spec.js",
"test:coverage-ci": "nyc --exclude 'src/test' --clean --reporter=lcov --check-coverage --statements 40 --lines 50 npm test",
"test:coverage": "nyc --exclude 'src/test' --clean --reporter=text --check-coverage --statements 40 --lines 50 npm test"
},
"keywords": [],
"author": "Rômulo Cabral Santos <[email protected]>",
"license": "GNU Affero General Public License v3.0",
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongodb": "^3.5.9",
"morgan": "^1.10.0",
"node-fetch": "^2.6.0",
"query-string": "^6.13.1",
"xml2js": "^0.4.23"
},
"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"
}
}