-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "whispeer",
"version": "2.5.2",
"private": true,
"type": "module",
"scripts": {
"prestart": "node ./node_modules/db-migrate/bin/db-migrate up",
"lint": "eslint --ext .ts,.js,.cjs,.vue . --fix",
"build": "nuxt build",
"dev": "nuxt dev",
"test": "vitest",
"test:debug": "node --inspect-brk node_modules/vitest/dist/cli.js --run",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"migrate": "node-pg-migrate up",
"start": "node .output/server/index.mjs"
},
"devDependencies": {
"@nuxt/test-utils": "^3.11.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/plausible": "^0.2.4",
"@types/crypto-js": "^4.2.2",
"@vue/test-utils": "^2.4.4",
"eslint": "^8.57.0",
"happy-dom": "^13.3.8",
"node-pg-migrate": "^6.2.2",
"nuxt": "^3.11.2",
"sass": "^1.70.0",
"sass-loader": "^14.0.0",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.2",
"vue": "^3.4.14",
"vue-router": "^4.2.5"
},
"dependencies": {
"@nuxt/image": "^1.3.0",
"crypto-js": "^4.2.0",
"nuxt-scheduler": "^0.1.9"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.9.6"
}
}