-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.6 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
{
"name": "draftan",
"version": "1.0.0",
"private": true,
"main": "out/main/index.js",
"productName": "Draftan",
"scripts": {
"clean": "rm -rf dist out",
"dev": "yarn run build:electron && electron .",
"build": "run-s build:*",
"build:renderer": "next build src/renderer && next export src/renderer -o out/renderer/out",
"build:electron": "tsc -p src/main",
"dist": "yarn run build && electron-builder",
"lint": "run-p -l -c --aggregate-output lint:*",
"lint:tsc-main": "tsc --noEmit -p src/main",
"lint:tsc-renderer": "tsc --noEmit -p src/renderer",
"lint:eslint": "eslint . --max-warnings 0",
"lint:prettier": "prettier --check .",
"format": "run-s format:*",
"format:eslint": "eslint --fix .",
"format:prettier": "prettier --write ."
},
"dependencies": {
"codemirror": "latest",
"electron-is-dev": "latest",
"electron-next": "latest",
"react": "latest",
"react-codemirror2": "latest",
"react-dom": "latest"
},
"devDependencies": {
"@types/codemirror": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"electron": "latest",
"electron-builder": "latest",
"eslint": "latest",
"eslint-config-next": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "latest",
"next": "latest",
"npm-run-all": "latest",
"prettier": "latest",
"typescript": "latest"
}
}