-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.8 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": "supertool.digital",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"dev": "npm run services:up && npm run wait-for-postgres && npm run migration:up && nuxt dev",
"services:up": "docker compose --env-file ./.env -f resources/compose.yaml up -d",
"services:stop": "docker compose -f resources/compose.yaml stop",
"services:down": "docker compose -f resources/compose.yaml down",
"wait-for-postgres": "tsx resources/scripts/wait-for-postgres",
"lint:prettier:check": "prettier --check .",
"lint:prettier:fix": "prettier --write .",
"lint:eslint:check": "eslint .",
"lint:eslint:fix": "eslint --fix .",
"migration:create": "tsx resources/migration create",
"migration:up": "tsx resources/migration up",
"test": "npm run services:up && concurrently -n nuxt,vitest --hide nuxt -k -s command-vitest \"nuxt dev\" \"vitest --run\"",
"test:watch": "vitest",
"prepare": "husky"
},
"dependencies": {
"@nuxt/eslint": "^0.7.2",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"async-retry": "^1.3.3",
"nuxt": "^3.14.159",
"pg": "8.11.0",
"vue": "latest",
"vue-router": "latest"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@nuxt/test-utils": "^3.14.4",
"@types/async-retry": "^1.4.9",
"@types/pg": "^8.11.10",
"@vue/test-utils": "^2.4.6",
"concurrently": "^9.1.0",
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6",
"happy-dom": "^15.11.6",
"husky": "^9.1.7",
"playwright-core": "^1.48.2",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.5"
}
}