-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.62 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "notes-nc",
"description": "Note taking app for markdown folders",
"author": "Matthew Scharley <[email protected]>",
"private": true,
"version": "0.8.0",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/mscharley"
},
"license": "MIT",
"main": "ts-build/main",
"repository": {
"type": "git",
"url": "git+https://github.com/mscharley/notes-nc.git"
},
"bugs": {
"url": "https://github.com/mscharley/notes-nc/issues"
},
"homepage": "https://github.com/mscharley/notes-nc#readme",
"engines": {
"node": ">= 20.11"
},
"engineStrict": true,
"scripts": {
"prepare": "husky",
"postinstall": "node ./bin/postinstall.mjs",
"electron": "node ./bin/electron.mjs",
"electron:dev": "node ./bin/electron.mjs --dev",
"start": "concurrently -n tsc,npm,vite -c 'green,yellow,blueBright' npm:start:tsc npm:start:watch npm:start:vite",
"start:tsc": "tsc --watch",
"start:watch": "npm-watch",
"start:vite": "node ./bin/vite-dev-server.mjs",
"clean": "rimraf -rf ts-build coverage dist",
"build": "node ./bin/build.mjs",
"build:esbuild": "esbuild ./src/main/index.ts ./src/main/preload.ts --color=true --bundle --minify --sourcemap=external --outdir=ts-build/main --platform=node --external:electron --external:electron-is-dev --external:electron-devtools-installer",
"build:vite": "vite build",
"test": "npm run test:lint && npm run test:jest && npm run test:build",
"test:electronegativity": "electronegativity -i ./src -e $(electron --version)",
"test:lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"test:jest": "jest",
"test:build": "electron-builder --linux --publish never",
"viteshot": "viteshot",
"viteshot:ci": "node ./bin/viteshot-ci.mjs",
"pack": "set -a; [ -f ./.env ] && source ./.env; npm run release -- --publish never",
"release": "electron-builder --win --linux"
},
"watch": {
"build:esbuild": {
"patterns": [
"package.json",
"src/main",
"src/shared"
],
"extensions": "ts"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{json,md,yml}": "prettier -w"
},
"dependencies": {
"@codemirror/lang-markdown": "6.2.5",
"@codemirror/language-data": "6.5.1",
"@emotion/cache": "11.13.1",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@fontsource/roboto": "5.0.15",
"@mscharley/dot": "1.6.1",
"@mui/icons-material": "5.16.7",
"@mui/material": "5.16.7",
"@reduxjs/toolkit": "2.2.7",
"@uiw/react-codemirror": "4.23.2",
"classnames": "2.5.1",
"electron-log": "5.2.0",
"electron-store": "8.2.0",
"electron-updater": "6.3.0",
"fs-extra": "11.2.0",
"lodash.debounce": "4.0.8",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "9.1.2",
"reflect-metadata": "0.2.2",
"source-map-support": "0.5.21",
"uuid": "10.0.0"
},
"devDependencies": {
"@mscharley/eslint-config": "3.1.4",
"@mscharley/prettier-config": "3.0.5",
"@types/jest": "29.5.12",
"@types/lodash.debounce": "4.0.9",
"@types/node": "18.19.30",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"@types/uuid": "9.0.8",
"@vitejs/plugin-react": "4.3.1",
"concurrently": "8.2.2",
"copyfiles": "2.4.1",
"electron": "30.5.0",
"electron-builder": "24.13.3",
"electron-devtools-installer": "3.2.0",
"electron-is-dev": "2.0.0",
"esbuild": "0.23.1",
"generic-type-guard": "4.0.3",
"husky": "9.1.5",
"install": "0.13.0",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"npm-watch": "0.13.0",
"patch-package": "8.0.0",
"playwright": "1.47.0",
"react-test-renderer": "18.3.1",
"rimraf": "3.0.2",
"testdouble": "3.20.2",
"ts-jest": "29.2.5",
"typescript": "5.5.4",
"vite": "5.4.6",
"viteshot": "0.3.1"
}
}