forked from StimGlb/technodocs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 896 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 896 Bytes
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
{
"name": "technodocs",
"version": "1.0.0",
"description": "Application pour l'enseignement de l'Indice de Réparabilité",
"type": "module",
"scripts": {
"dev": "vite",
"dev:netlify": "netlify dev",
"build": "vite build",
"preview": "vite preview",
"deploy:preview": "netlify deploy",
"deploy:prod": "netlify deploy --prod",
"deploy:dev": "netlify deploy --dir=. --message='Dev preview'",
"security-check": "node security-check.js",
"security-check:prod": "node security-check.js https://technodocs.netlify.app",
"commit": "bash ./scripts/commit.sh",
"commit:win": "./scripts/commit.bat"
},
"keywords": [
"flashcards",
"education",
"reparabilite",
"technologie"
],
"author": "",
"license": "MIT",
"devDependencies": {
"vite": "^7.3.1"
},
"dependencies": {
"@netlify/plugin-lighthouse": "^6.0.4"
}
}