-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.98 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "insta-api",
"version": "2.0.0",
"description": "",
"scripts": {
"build": "tsc -p .",
"dev": "tsc-watch --onSuccess \"node ./dist/server.js\"",
"test": "jest --collectCoverage",
"debug": "node --debug-brk --inspect ./node_modules/.bin/jest -i",
"start": "node ./dist/server.js",
"lint": "eslint --fix --ext .ts ."
},
"keywords": [],
"author": "Lucas Francisco Lopez",
"license": "ISC",
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"clearMocks": true
},
"dependencies": {
"@types/compression": "^1.7.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/node-cron": "^2.0.3",
"@types/puppeteer": "^3.0.0",
"@types/puppeteer-core": "^2.0.0",
"@types/uuid": "^7.0.2",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-winston": "^4.0.3",
"fs": "0.0.1-security",
"node-cron": "^2.0.3",
"puppeteer": "^3.1.0",
"puppeteer-core": "^3.3.0",
"typescript": "^3.9.3",
"uuid": "^7.0.3",
"winston": "^3.2.1",
"performance-now": "^2.1.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/request-promise": "^4.1.46",
"@types/supertest": "^2.0.8",
"ts-node": "3.3.0",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.10.1",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-security": "^1.4.0",
"jest": "^25.4.0",
"prettier": "^2.0.4",
"ts-jest": "^25.4.0",
"tsc-watch": "^4.2.3"
}
}