-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
61 lines (61 loc) · 1.93 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
{
"name": "todolist-api",
"version": "1.1.6",
"description": "This is a example on how to build a backend application using [Herbs](https://github.com/herbsjs)",
"main": "",
"scripts": {
"test": "mocha --timeout 999999 --colors --recursive src/**/*.test.js",
"coverage": "nyc --reporter=html mocha src/**/*.test.js npm test",
"start": "node src/infra/api/server.js",
"knex:make": "npx knex --knexfile knexfile.js migrate:make",
"knex:migrate": "npx knex --knexfile knexfile.js migrate:latest",
"knex:rollback": "npx knex --knexfile knexfile.js migrate:rollback",
"knex:makeSeeds": "npx knex --knexfile knexfile.js seed:make",
"knex:runSeeds": "npx knex --knexfile knexfile.js seed:run",
"lint": "npx eslint \"**/*.{js,jsx}\" --quiet",
"lint:fix": "npx eslint \"**/*.{js,jsx}\" --fix",
"commit": "cz",
"repl": "node src/infra/repl/"
},
"engines": {
"node": ">= 14.x"
},
"keywords": [],
"author": "David Lojudice Sb",
"license": "MIT",
"dependencies": {
"@herbsjs/herbarium": "^1.4.0",
"@herbsjs/herbs": "1.6.2",
"@herbsjs/herbs2gql": "2.3.0",
"@herbsjs/herbs2knex": "1.5.8",
"@herbsjs/herbs2repl": "^1.0.5",
"@herbsjs/herbs2rest": "^3.2.2",
"@herbsjs/herbsshelf": "^4.1.0",
"apollo-env": "^0.10.2",
"apollo-server-express": "^3.10.0",
"dotenv": "^16.0.2",
"express": "^4.18.2",
"graphql": "^16.5.0",
"graphql-scalars": "^1.17.0",
"knex": "2.3.0",
"pg": "^8.8.0",
"sqlite3": "^5.1.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"ws": ">=8.8.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}