-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.75 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": "express_api",
"version": "1.0.0",
"main": "src/app/api.ts",
"scripts": {
"start": "DEBUG=express,libgen,scrapping nodemon -x ts-node src/app/api.ts",
"serve": "npm run build && DEBUG=express,libgen,scrapping node dist/src/app/api.js",
"build": "tsc",
"postinstall": "npm run build",
"watch-node": "nodemon dist/server.js",
"watch-ts": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Manuel Vargas Tapia",
"license": "MIT",
"dependencies": {
"@hapi/joi": "17.1.1",
"compression": "1.7.4",
"cors": "2.8.5",
"debug": "4.2.0",
"express": "4.17.1",
"express-joi-validation": "4.0.4-beta.0",
"jsdom": "16.4.0",
"libgen": "git+https://github.com:manuelvargastapia/libgen.js.git#custom_libgen",
"node-fetch": "2.6.1",
"ts-node": "9.0.0",
"typescript": "4.0.3",
"yargs": "16.1.1"
},
"engines": {
"node": "12.8.x",
"npm": "6.14.x"
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"prettier-eslint --write"
]
},
"devDependencies": {
"@types/compression": "1.7.0",
"@types/cors": "2.8.7",
"@types/express": "4.17.8",
"@types/hapi__joi": "17.1.6",
"@types/jsdom": "16.2.4",
"@types/node": "14.11.2",
"@types/node-fetch": "2.5.7",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.21.3",
"eslint-plugin-react-hooks": "4.0.0",
"lint-staged": "10.4.0",
"nodemon": "2.0.4",
"prettier-eslint-cli": "5.0.0"
}
}