-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.29 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
{
"name": "pix-tutos",
"type": "module",
"version": "3.13.27",
"private": true,
"engines": {
"node": "^22.11.0"
},
"scripts": {
"dev": "nuxt dev",
"dev:mobile": "nuxt dev --host",
"build": "nuxt generate",
"start": "nuxt start",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:content": "docker run -v $PWD:/workdir ghcr.io/igorshubovych/markdownlint-cli:latest 'content/**/*.md'",
"lint:content:fix": "npm run lint:content -- -fix",
"test": "vitest",
"test:e2e": "npm run test:e2e:install && npm run test:e2e:run",
"test:e2e:install": "playwright install",
"test:e2e:run": "playwright test",
"test:e2e:update-snapshots": "playwright test --update-snapshots",
"postinstall": "nuxt prepare",
"captions:translate": "srt-to-vtt 'public/captions/mednum/Un pseudo pourquoi faire.mp4.srt' > public/captions/mednum/Un_pseudo_pourquoi_faire.vtt"
},
"dependencies": {
"plyr": "^3.7.8"
},
"devDependencies": {
"@1024pix/pix-ui": "^51.3.0",
"@antfu/eslint-config": "^3.0.0",
"@nuxt/content": "^2.4.3",
"@playwright/test": "^1.30.0",
"@types/node": "^22.0.0",
"axios": "^1.3.3",
"eslint": "^9.0.0",
"nuxt": "~3.14.0",
"sass": "^1.52.3",
"srt-to-vtt": "^1.1.3",
"vitest": "^2.0.0"
}
}