forked from raulfdm/taco-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·65 lines (65 loc) · 1.62 KB
/
package.json
File metadata and controls
executable file
·65 lines (65 loc) · 1.62 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "taco-api",
"version": "0.1.0",
"description": "Brazilian Table of Food Composition (TACO) - JSON API",
"homepage": "https://github.com/raulfdm/taco.js",
"bugs": {
"url": "https://github.com/raulfdm/taco.js/issues"
},
"license": "MIT",
"author": {
"name": "Raul de Melo",
"email": "melo.raulf@gmail.com"
},
"scripts": {
"postinstall": "npm run api:doc",
"prestart": "npm run api:doc",
"start": "node src/index.js",
"predev": "npm run api:doc",
"dev": "nodemon src/index.js",
"lint": "eslint ./src/**/*.js",
"test": "jest",
"test:tdd": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"api:doc": "apidoc -i src -o docs",
"docs:dev": "vuepress dev documentation",
"docs:build": "vuepress build documentation",
"build:image": "scripty",
"deploy:image": "scripty"
},
"dependencies": {
"apidoc": "0.50.3",
"consign": "0.1.6",
"cors": "2.8.5",
"express": "4.17.2",
"lodash": "4.17.21"
},
"devDependencies": {
"@types/cors": "2.8.12",
"deep-freeze": "0.0.1",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"husky": "4.3.8",
"jest": "26.1.0",
"nodemon": "2.0.4",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"rimraf": "3.0.2",
"scripty": "2.0.0",
"supertest": "4.0.2",
"vuepress": "2.0.0-beta.32"
},
"resolutions": {
"minimist": "^0.2.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"verbose": true
}
}