-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.61 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
54
55
56
57
58
59
60
61
62
{
"name": "parlamentet.dk",
"version": "0.0.1",
"author": "huulbaek",
"license": "MIT",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"lint": "eslint . --ext .ts,.vue",
"prepare": "husky install",
"format-check": "npx prettier --check ./",
"format-write": "npx prettier --write ./",
"test": "vitest",
"test:e2e": "testcafe chrome tests/e2e/",
"vercel-build": "prisma generate && npx prisma migrate deploy && nuxt build",
"prisma:generate": "npx prisma generate"
},
"lint-staged": {
"*.{js,vue,ts}": [
"yarn lint"
]
},
"devDependencies": {
"@nuxt/test-utils": "^3.0.0-rc.3",
"@nuxtjs/eslint-config-typescript": "^10.0.0",
"@pinia/nuxt": "^0.4.0",
"@vueuse/nuxt": "^8.3.1",
"axios": "^0.27.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.0",
"lint-staged": "^12.4.1",
"msw": "^0.39.2",
"nuxt": "npm:nuxt3@latest",
"pinia": "^2.0.13",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.10",
"prisma": "4.1.1",
"tailwindcss": "^3.1.7",
"testcafe": "^1.18.6",
"typescript": "^4.7.4",
"vitest": "^0.12.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"msw": {
"workerDirectory": "public"
},
"dependencies": {
"@headlessui/vue": "^1.6.7",
"@heroicons/vue": "^1.0.6",
"@prisma/client": "4.1.1"
}
}