This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
{
"name": "cdd",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "prisma migrate deploy && nuxt generate",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint": "yarn lint:js && yarn prettier",
"prettier": "prettier -w components layouts pages plugins types",
"test": "jest --passWithNoTests",
"prisma": "prisma",
"prisma:studio": "prisma studio"
},
"dependencies": {
"@contentful/rich-text-types": "^15.12.1",
"@nuxtjs/auth-next": "5.0.0-1648802546.c9880dc",
"@nuxtjs/axios": "^5.13.6",
"@prisma/client": "3.14.0",
"contentful": "^9.1.29",
"contentful-rich-text-vue-renderer": "^2.1.0",
"core-js": "^3.22.7",
"nuxt": "^2.15.8",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"@nuxt/image": "^0.6.2",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^10.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@nuxtjs/google-analytics": "^2.4.0",
"@vercel/node": "^1.15.3",
"@vue/test-utils": "^2.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^28.1.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-vue": "^9.0.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"prettier": "^2.6.2",
"prisma": "3.14.0",
"ts-jest": "^28.0.3",
"vue-jest": "^3.0.7"
}
}