-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 3.1 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
{
"name": "code-snippet-app",
"productName": "code-snippet-app",
"version": "1.0.0",
"description": "A simple Electron app to store code snippets for later use. You can add, edit, delete and search for code snippets, mark them as favorites and categorize them by folders. This application is greatly inspired by MassCode, but not direct copy of it. Thank you to all the amazing people who created the technologies that made this project possible. The executable only supports Windows at the moment, but I'm looking for contributors to make deployment to other platforms possible!",
"main": ".webpack/main",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts,.tsx ."
},
"keywords": [],
"author": {
"name": "petya0927",
"email": "unyipeti@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^6.4.1",
"@electron-forge/maker-deb": "^6.4.1",
"@electron-forge/maker-rpm": "^6.4.1",
"@electron-forge/maker-squirrel": "^6.4.1",
"@electron-forge/maker-zip": "^6.4.1",
"@electron-forge/plugin-auto-unpack-natives": "^6.4.1",
"@electron-forge/plugin-webpack": "^6.4.1",
"@electron-forge/publisher-github": "^6.4.1",
"@types/electron-json-storage": "^4.5.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@vercel/webpack-asset-relocator-loader": "^1.7.3",
"autoprefixer": "^10.4.15",
"css-loader": "^6.8.1",
"electron": "26.1.0",
"fork-ts-checker-webpack-plugin": "^7.3.0",
"node-loader": "^2.0.0",
"postcss": "^8.4.29",
"postcss-loader": "^7.3.3",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.3",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "~4.5.4"
},
"dependencies": {
"@codemirror/lang-cpp": "^6.0.2",
"@codemirror/lang-html": "^6.4.6",
"@codemirror/lang-java": "^6.0.1",
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-less": "^6.0.1",
"@codemirror/lang-lezer": "^6.0.1",
"@codemirror/lang-markdown": "^6.2.0",
"@codemirror/lang-php": "^6.0.1",
"@codemirror/lang-python": "^6.1.3",
"@codemirror/lang-rust": "^6.0.1",
"@codemirror/lang-sass": "^6.0.2",
"@codemirror/lang-sql": "^6.5.4",
"@codemirror/lang-xml": "^6.0.2",
"@codemirror/language": "^6.9.0",
"@mantine/core": "^6.0.19",
"@mantine/form": "^6.0.19",
"@mantine/hooks": "^6.0.19",
"@mantine/prism": "^6.0.19",
"@nextjournal/lang-clojure": "^1.0.0",
"@replit/codemirror-lang-csharp": "^6.1.0",
"@tabler/icons-react": "^2.32.0",
"@uiw/codemirror-themes": "^4.21.12",
"@uiw/codemirror-themes-all": "^4.21.12",
"@uiw/react-codemirror": "^4.21.12",
"codemirror": "^6.0.1",
"electron-json-storage": "^4.6.0",
"electron-squirrel-startup": "^1.0.0",
"monaco-themes": "^0.4.4",
"react": "^18.2.0",
"react-component-export-image": "^1.0.6",
"react-dom": "^18.2.0",
"react-router-dom": "^6.15.0",
"uid": "^2.0.2"
}
}