-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.16 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
{
"name": "design-api",
"version": "0.1.0",
"description": "Projeto template para Desing de API",
"main": "app.js",
"dependencies": {
"@b2wads/env-o-loader": "^1.0.1",
"@b2wads/logger": "1.0.3",
"express": "4.17.0",
"mysql2": "^2.1.0",
"sequelize": "^5.21.6",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"acorn": "^7.1.1",
"chai": "^4.2.0",
"eslint": "6.2.2",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-no-unsafe-regex": "1.0.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-you-dont-need-lodash-underscore": "6.6.0",
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"prettier": "1.17.1",
"supertest": "4.0.2"
},
"scripts": {
"deps": "docker-compose up --force-recreate --renew-anon-volumes",
"eslint": "./node_modules/.bin/eslint --fix .",
"eslint:check": "./node_modules/.bin/eslint .",
"fix:<fix-name>": "node scripts/fix-<fix-name>.js",
"fmt": "npm run prettier && npm run eslint",
"fmt:check": "npm run prettier:check && npm run eslint:check",
"prettier": "./node_modules/.bin/prettier --write \"**/{*.js,*.json,bin/**}\"",
"prettier:check": "./node_modules/.bin/prettier --check \"**/{*.js,*.json,bin/**}\"",
"start": "NODE_ENV=production node ./bin/www",
"debug": "NODE_ENV=production node --inspect ./bin/www",
"test": "NODE_ENV=test mocha",
"test:v1": "NODE_ENV=test mocha ./test/acceptance/products-v1.spec.js",
"test:v2": "NODE_ENV=test mocha ./test/acceptance/products-v2.spec.js",
"test:v3": "NODE_ENV=test mocha ./test/acceptance/products-v3.spec.js",
"test:coverage-report": "nyc report --reporter=text-lcov > coverage.lcov",
"cli": "NODE_ENV=production node --experimental-repl-await"
},
"repository": {
"type": "git",
"url": "github.com:b2wads/design-api"
},
"keywords": [
"nodejs",
"design-api",
"webapp",
"worker"
],
"author": "B2WADS",
"license": "MIT"
}