-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.48 KB
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
{
"name": "naruto-api-br",
"version": "1.0.0",
"description": "fan api dedicate to shared pt-br info about naruto anime",
"main": "index.js",
"engines": {
"node": "20.x"
},
"scripts": {
"vercel-build": "NODE_ENV=production npx sequelize-cli db:migrate",
"start": "node index.js",
"dev": "node --watch index.js",
"dev:tailwind": "npx tailwindcss -i ./web-views/src/assets/input.css -o ./web-views/src/assets/output.css --watch",
"pretest": "NODE_ENV=test npx sequelize-cli db:migrate",
"pretest:ui": "NODE_ENV=test npx sequelize-cli db:migrate",
"test": "vitest",
"test:e2e": "NODE_ENV=test npx sequelize-cli db:migrate && NODE_ENV=test npx playwright test --ui",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"api",
"anime",
"naruto"
],
"author": "Willian D. Daniel <williandeivitidaniel@live.com>",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.1",
"pg-hstore": "^2.3.4",
"resend": "^4.0.1",
"sequelize": "^6.37.5",
"sequelize-cli": "^6.6.2"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.7",
"@vitest/coverage-v8": "^2.1.6",
"@vitest/ui": "^2.1.6",
"cors": "^2.8.5",
"sqlite3": "^5.1.7",
"tailwindcss": "^3.4.15",
"vitest": "^2.1.6"
}
}