forked from filipedeschamps/tabnews.com.br
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 4.28 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"dependencies": {
"@bytemd/plugin-breaks": "1.17.4",
"@bytemd/plugin-gemoji": "1.17.4",
"@bytemd/plugin-gfm": "1.17.4",
"@bytemd/plugin-highlight-ssr": "1.17.4",
"@bytemd/plugin-mermaid": "1.17.4",
"@bytemd/react": "1.17.4",
"@primer/octicons-react": "17.8.0",
"@primer/react": "35.13.0",
"@resvg/resvg-js": "2.1.0",
"@upstash/ratelimit": "0.1.5",
"@upstash/redis": "1.14.0",
"@vercel/analytics": "0.1.2",
"async-retry": "1.3.3",
"bcryptjs": "2.4.3",
"cookie": "0.5.0",
"cross-fetch": "3.1.5",
"date-fns": "2.29.3",
"feed": "4.2.2",
"github-markdown-css": "5.1.0",
"highlight.js": "11.6.0",
"joi": "17.6.3",
"next": "13.0.0",
"next-connect": "0.13.0",
"node-pg-migrate": "6.2.2",
"nodemailer": "6.8.0",
"nprogress": "0.2.0",
"parse-link-header": "2.0.0",
"pg": "8.8.0",
"pino": "8.6.1",
"react": "18.2.0",
"react-confetti": "6.1.0",
"react-dom": "18.2.0",
"react-icons": "4.4.0",
"react-rewards": "2.0.4",
"recharts": "2.1.15",
"set-cookie-parser": "2.5.1",
"slug": "8.2.2",
"snakeize": "0.1.0",
"styled-components": "5.3.6",
"swr": "2.0.0-beta.1",
"uuid": "9.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@faker-js/faker": "7.5.0",
"autoprefixer": "10.4.12",
"concurrently": "7.4.0",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.0.3",
"eslint": "8.25.0",
"eslint-config-next": "13.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-primer-react": "1.0.1",
"husky": "8.0.1",
"jest": "29.1.2",
"kill-port": "1.6.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"retry-cli": "0.7.0"
},
"scripts": {
"dev": "kill-port 3000 && npm run services:up && npm run migration:run && npm run migration:seed && npm run next && npm run services:stop",
"next": "next dev",
"services:up": "docker-compose -f infra/docker-compose.development.yml up -d",
"services:stop": "docker-compose -f infra/docker-compose.development.yml stop",
"build": "cross-env BUILD_TIME=true next build",
"build:local": "kill-port 3000 && npm run services:up && npm run migration:run && npm run migration:seed && next build && npm run services:stop",
"start": "next start",
"start:local": "kill-port 3000 && npm run services:up && npm run migration:run && npm run migration:seed && next start && npm run services:stop",
"test": "kill-port 3000 && npm run services:up && concurrently -s -k -n next,jest --hide next \"npm run next\" \"jest --runInBand --verbose\" && npm run services:stop",
"test:watch": "jest --runInBand --watchAll",
"test:watch:services": "kill-port 3000 && npm run services:up && concurrently -s -k -n next,jest \"npm run next\" \"jest --runInBand --watchAll\" && npm run services:stop",
"lint": "npm run lint:next && npm run lint:prettier",
"lint:next": "next lint --max-warnings=0 --dir .",
"lint:prettier": "prettier --check .",
"lint:fix": "eslint --fix && prettier --write .",
"commit": "cz",
"migration:create": "node-pg-migrate --migrations-dir ./infra/migrations create",
"migration:run": "node infra/scripts/wait-for-db-connection-ready.js && node-pg-migrate up --envPath ./.env -m infra/migrations/ 2>migrations.log",
"migration:dry-run": "node-pg-migrate up --dry-run --envPath ./.env -m infra/migrations",
"migration:seed": "node infra/scripts/seed-database.js",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"npm run lint:fix"
]
},
"engines": {
"node": "16"
},
"name": "tabnews.com.br",
"description": "Conteúdos para quem vive de programação e tecnologia.",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/filipedeschamps/tabnews.com.br.git"
},
"keywords": [
"news"
],
"author": "Filipe Deschamps",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/filipedeschamps/tabnews.com.br/issues"
},
"homepage": "https://www.tabnews.com.br/",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}