-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.77 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
62
{
"name": "api-doc-js-sdk",
"version": "2.1.5",
"description": "SDK for Api Doc development",
"main": "./lib/index.js",
"scripts": {
"test": "rimraf mydb.sqlite && yarn build && jest --runInBand",
"dev": "nodemon src/index.ts",
"build": "rimraf lib/ && tsc",
"build:doc": "typedoc --out docs && cp documentation/_config.yml docs/",
"prepare": "npm run build",
"version": "git add -A ./",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joaomede/api-doc-js-sdk.git"
},
"author": "João Medeiros N. Junior",
"license": "MIT",
"bugs": {
"url": "https://github.com/joaomede/api-doc-js-sdk/issues"
},
"homepage": "https://github.com/joaomede/api-doc-js-sdk#readme",
"files": [
"lib/**/*"
],
"dependencies": {
"bcrypt": "^5.0.0",
"jsonwebtoken": "^9.0.0",
"knex": "^2.4.0",
"knex-populate": "^2.1.2",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"pg": "^8.4.2",
"sqlite3": "^5.0.1"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/jest": "^26.0.15",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.163",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"dotenv": "^8.2.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.6.1",
"nodemon": "^2.0.6",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"sucrase": "^3.16.0",
"ts-jest": "^26.4.3",
"typescript": "^4.1.3"
}
}