-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.61 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
{
"name": "lightwrite",
"version": "0.0.0",
"main": "./dist/main.js",
"repository": "https://github.com/tinyCatzilla/light-write.git",
"author": "catzilla <kary.ishwaran@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/draft-js": "^0.11.12",
"@types/node": "^20.4.4",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-latex": "^2.0.0",
"babel-loader": "^9.1.3",
"electron": "^25.3.1",
"html-webpack-plugin": "^5.5.3",
"postcss-loader": "^7.3.3",
"style-loader": "^3.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@babel/core": "^7.22.9",
"@types/katex": "^0.16.1",
"@types/prismjs": "^1.26.0",
"@types/quill": "^2.0.10",
"autoprefixer": "^10.4.14",
"babel": "^6.23.0",
"css-loader": "^6.8.1",
"file-loader": "^6.2.0",
"html2canvas": "^1.4.1",
"katex": "^0.16.8",
"postcss": "^8.4.27",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-latex": "^2.0.0",
"react-markdown": "^8.0.7",
"react-select": "^5.7.4",
"react-split": "^2.0.14",
"sharp": "^0.32.4",
"slate": "^0.94.1",
"slate-history": "^0.93.0",
"slate-react": "^0.97.2",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6"
},
"scripts": {
"dev": "webpack --mode development && electron .",
"build": "./node_modules/.bin/tsc",
"start": "webpack --mode production && electron ."
}
}