This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
53 lines (53 loc) · 1.68 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
{
"name": "amibot",
"version": "1.0.0",
"description": "This project was bootstrapped with Fastify-CLI.",
"type": "module",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run build:ts && tsc -p test/tsconfig.json && tap --ts \"test/**/*.test.ts\"",
"start": "npm run build:ts && fastify start -l info dist/app.js",
"build:ts": "tsc",
"watch:ts": "tsc -w",
"dev": "npm run build:ts && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"npm:watch:ts\" \"npm:dev:start\"",
"dev:start": "fastify start --ignore-watch=.ts$ -w -l info -P dist/app.js",
"lint": "eslint . --ext .js,.mjs,.ts --quiet",
"lint:fix": "eslint . --ext .js,.mjs,.ts --quiet --fix",
"fmt": "prettier \"./**/*.{js,mjs,ts}\" --write"
},
"keywords": [
"amizone",
"whatsapp-bot"
],
"author": "asetalias <[email protected]>",
"license": "MIT",
"dependencies": {
"@fastify/autoload": "^5.0.0",
"@fastify/sensible": "^4.1.0",
"amizone_api": "^0.7.0",
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"eslint-plugin-import": "^2.25.3",
"fastify": "^4.10.2",
"fastify-cli": "^4.1.1",
"fastify-plugin": "^3.0.0",
"mongodb": "^4.7.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"concurrently": "^8.0.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-prettier": "^4.0.0",
"fastify-tsconfig": "^1.0.1",
"prettier": "^2.7.1",
"tap": "^16.1.0",
"typescript": "^5.0.4"
}
}