-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.02 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.02 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
{
"name": "common-identifier-application",
"version": "2.2.0",
"author": "World Food Programme",
"description": "Common Identifier generation tool for Assistance and Mapping documents.",
"main": "./dist-electron/index.js",
"type": "module",
"scripts": {
"watch": "tsc -w",
"format": "prettier --write .",
"dev": "vite",
"dev:debug": "set DEBUG=cid:*& vite",
"prebuild": "npm run clean",
"build": "tsc && vite build",
"preview": "vite preview",
"clean": "git clean -xdf dist-electron dist release",
"clean:app": "git clean -xdf dist-electron dist release algo_repo electron/main/algo coverage",
"clean:all": "git clean -xdf dist-electron dist release algo_repo electron/main/algo coverage node_modules",
"package": "electron-builder -p never",
"test": "vitest --run",
"test:coverage": "vitest --coverage --run",
"test:watch": "vitest --watch",
"test:ci": "vitest --coverage --reporter=junit --run"
},
"license": "AGPL-3.0-only",
"devDependencies": {
"@commander-js/extra-typings": "^14.0.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.16",
"commander": "^14.0.2",
"debug": "^4.4.3",
"electron": "^39.2.6",
"electron-builder": "^26.4.0",
"electron-typescript-ipc": "^3.0.0",
"jsdom": "^27.4.0",
"node-html-parser": "^7.0.1",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"vitest": "^4.0.16"
},
"dependencies": {
"@wfp/common-identifier-algorithm-shared": "^2.1.5",
"@wfp/common-identifier-algorithms": "^2.1.5",
"date-fns": "^4.1.0",
"electron-log": "^5.4.3",
"i18next": "^25.7.2",
"i18next-browser-languagedetector": "^8.2.0",
"immer": "^11.1.3",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-i18next": "^16.5.1",
"zustand": "^5.0.9"
}
}