-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.15 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.15 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "daily-notes",
"version": "1.0.0",
"description": "Daily notes application with Google Drive sync",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --passWithNoTests",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch --passWithNoTests",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --passWithNoTests",
"test:ci": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --ci --maxWorkers=2 --passWithNoTests"
},
"devDependencies": {
"@jest/globals": "^30.3.0",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@vitejs/plugin-legacy": "^8.0.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"prettier": "^3.4.2",
"typescript": "^5.9.3",
"vite": "^8.0.1"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {},
"testMatch": [
"**/tests/frontend/**/*.test.js"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts",
"!src/types/**"
],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 75,
"lines": 75,
"statements": 75
}
},
"coverageReporters": [
"text",
"text-summary",
"html",
"lcov"
],
"verbose": true,
"testTimeout": 10000
},
"repository": {
"type": "git",
"url": "git+https://github.com/gmoqa/daily-notes.git"
},
"keywords": [
"notes",
"daily-notes",
"google-drive",
"markdown"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gmoqa/daily-notes/issues"
},
"homepage": "https://github.com/gmoqa/daily-notes#readme"
}