-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.65 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": "berthelot.io",
"version": "1.0.0",
"private": true,
"description": "The family website",
"author": "FBerthelot <[email protected]>",
"license": "SEE LICENSE IN LICENSE.md FILE",
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "NODE_ENV=production nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"prettify": "prettier .",
"clean": "nuxt cleanup",
"test": "CI=true npm run test:static && CI=true npm run test:unit",
"test:static": "npm run prettify -- --check && npm run lint",
"test:static:fix": "npm run prettify -- --write && npm run lint -- --fix",
"test:unit": "vitest"
},
"devDependencies": {
"@intlify/eslint-plugin-vue-i18n": "^3.0.0",
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.7.2",
"@nuxtjs/eslint-config": "^12.0.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/test-utils": "^2.4.6",
"eslint": "8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-vitest": "^0.3.22",
"eslint-plugin-vitest-globals": "^1.5.0",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^25.0.1",
"nuxt": "^3.13.2",
"nuxt-simple-robots": "^4.0.1",
"nuxt-simple-sitemap": "^4.4.1",
"prettier": "3.2.4",
"unplugin-vue-components": "^0.27.4",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-router": "^4.4.0"
},
"dependencies": {
"@nuxt/content": "^2.13.2",
"@nuxtjs/i18n": "^8.5.5",
"firebase": "^11.0.2",
"fireworks-js": "^2.10.7",
"reveal.js": "^5.1.0"
}
}