-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.34 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
{
"name": "template-assessment-vue",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"format": "prettier . --write",
"host": "vite --host",
"build": "vite build && node utils/generateManifest.js && node utils/zip.js",
"preview": "vite preview",
"test": "npx mocha --no-timeouts src/tests/test.js",
"rcc": "npx mocha --no-timeouts src/tests/rcc.js",
"pass": "vite build && node utils/generateManifest.js && node utils/test_zip.cjs && npx mocha --no-timeouts src/tests/pass.js",
"fail": "vite build && node utils/generateManifest.js && node utils/test_zip.cjs && npx mocha --no-timeouts src/tests/fail.js"
},
"dependencies": {
"@remixicon/vue": "^4.6.0",
"@vueuse/core": "^12.5.0",
"dayjs": "^1.11.13",
"eslint": "^9.19.0",
"generate-index": "^4.1.1",
"npm-check-updates": "^17.1.14",
"pinia": "^2.3.1",
"pipwerks-scorm-api-wrapper": "^0.1.2",
"tailwind-merge": "^3.0.1",
"tailwindcss-fluid-type": "^2.0.7",
"vue": "^3.5.13"
},
"devDependencies": {
"@playwright/test": "^1.50.0",
"@types/node": "^22.12.0",
"@vitejs/plugin-vue": "^5.2.1",
"autoprefixer": "^10.4.20",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.1",
"vite": "^6.0.11",
"vite-aliases": "^0.11.8"
}
}