-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.94 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
75
76
77
{
"name": "twreach",
"version": "0.0.1",
"description": "twreach CLI",
"private": true,
"types": "build/types/types.d.ts",
"bin": {
"twreach": "bin/twreach"
},
"scripts": {
"clean-build": "rm -rf ./build",
"compile": "tsc -p .",
"copy-templates": "copyfiles ./src/templates/* ./build/templates",
"build": "yarn clean-build && yarn compile && yarn copy-templates",
"postgres:start": "docker run --detach --publish 5432:5432 -e POSTGRES_PASSWORD=postgres --name twreach postgres:12",
"prepublishOnly": "yarn build",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage",
"migrate:dev": "prisma migrate dev"
},
"files": [
"build",
"LICENSE",
"README.md",
"docs",
"bin"
],
"license": "MIT",
"dependencies": {
"@prisma/client": "3.10.0",
"axios": "^0.26.0",
"dayjs": "^1.10.8",
"dotenv": "^16.0.0",
"gluegun": "latest",
"prompts": "^2.4.2",
"twitter-api-v2": "^1.11.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^17.0.21",
"@types/prompts": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"copyfiles": "^2.4.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.1.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"prisma": "^3.10.0",
"ts-jest": "^26.5.3",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"url": "",
"type": "git"
}
}