-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "notes",
"private": true,
"version": "0.1.0",
"description": "A simple note taking app that does not track your data",
"author": "Stanley Masinde",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'"
},
"dependencies": {
"dexie": "^3.2.4",
"marked": "^11.1.1",
"vue": "^3.4.5",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@vitejs/plugin-vue": "^5.0.2",
"@vue/test-utils": "^2.4.3",
"autoprefixer": "^10.4.16",
"cypress": "^13.6.2",
"jsdom": "^23.0.1",
"postcss": "^8.4.32",
"start-server-and-test": "^2.0.3",
"tailwindcss": "^3.4.0",
"vite": "^5.0.10",
"vitest": "^1.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StanleyMasinde/notes.git"
},
"keywords": [
"Notes",
"PWA",
"Vite",
"Tailwind"
],
"bugs": {
"url": "https://github.com/StanleyMasinde/notes/issues"
},
"homepage": "https://github.com/StanleyMasinde/notes#readme"
}