-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.9 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
{
"name": "bot-sambanet",
"version": "1.0.0",
"description": "Bot para automatizar ações no lançamento de Notas Fiscais utilizando o software Samb@net",
"repository": "https://github.com/diasjoaovitor/node-boilerplate.git",
"author": "João Vitor <jvitordiass@outlook.com.br>",
"main": "src/app.ts",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/app.ts",
"start": "node dist/src/app.js",
"build": "tsc && npm run copy-views",
"copy-views": "cp -r src/views dist/src",
"test": "jest --runInBand --passWithNoTests",
"test:watch": "jest --runInBand --watchAll",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint": "eslint . --ext js,ts --report-unused-disable-directives --max-warnings 0",
"prepare": "husky",
"tailwind:css": "npx tailwindcss -i public/styles/tailwind.css -o public/styles/main.css --watch"
},
"dependencies": {
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"express": "^4.20.0",
"module-alias": "^2.2.3",
"mongodb": "^6.8.1",
"pug": "^3.0.3",
"puppeteer": "^23.3.0",
"socket.io": "^4.7.5",
"winston": "^3.14.2"
},
"devDependencies": {
"@prettier/plugin-pug": "^3.1.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/module-alias": "^2.0.4",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"git-commit-msg-linter": "^5.0.8",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.10",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.2"
}
}