-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.13 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.13 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "duckguessr",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "concurrently \"nuxt\" \"cd server && nodemon index.ts\"",
"dev-storybook": "concurrently \"nuxt\" \"cd server && nodemon index.ts\" \"npx nuxt storybook\"",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"generate-avatars": "ts-node create-avatar-files.ts",
"lint": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
"test": "npx codeceptjs run -f start",
"prisma": "prisma db pull && prisma generate && cd server && prisma generate --schema=../prisma/schema.prisma"
},
"dependencies": {
"@nuxtjs/axios": "^5.13.1",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/i18n": "^7.2.2",
"@nuxtjs/sentry": "^5.1.7",
"@nuxtjs/storybook": "^4.3.1",
"@pinia/nuxt": "^0.1.9",
"@prisma/client": "^3.14.0",
"@vue/runtime-dom": "^3.2.33",
"@vueuse/integrations": "^8.4.2",
"body-parser": "^1.20.0",
"bootstrap": "^4.6.1",
"bootstrap-vue": "^2.22.0",
"concurrently": "^7.1.0",
"core-js": "^3.22.5",
"mariadb": "^3.0.0",
"nuxt": "^2.15.8",
"nuxt-i18n-composable": "^1.0.0",
"pinia": "^2.0.14",
"request": "^2.88.2",
"socket.io-client": "^4.5.0",
"universal-cookie": "^4.0.4"
},
"devDependencies": {
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/composition-api": "^0.32.0",
"@nuxtjs/eslint-config-typescript": "^10.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@types/node": "^14.18.17",
"@types/sharp": "^0.30.2",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@vue/test-utils": "^1.3.0",
"babel-core": "7.0.0-bridge.0",
"codeceptjs": "^3.3.3",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.0.1",
"fibers": "^5.0.1",
"nodemon": "^2.0.16",
"playwright": "^1.21.1",
"prettier": "^2.6.2",
"prisma": "^3.14.0",
"sass": "^1.51.0",
"sass-loader": "^10.2.1",
"sharp": "^0.30.6",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}