This repository has been archived by the owner on Dec 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
69 lines (69 loc) · 1.95 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
{
"author": "Excalidraw Team",
"description": "Excalidraw Desktop",
"devDependencies": {
"@types/minimist": "1.2.0",
"@types/node": "14",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "4.0.0",
"@typescript-eslint/parser": "3.10.1",
"asar": "3.0.3",
"electron": "8.5.2",
"electron-builder": "22.8.0",
"eslint": "7.13.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"execa": "4.0.3",
"husky": "4.3.0",
"lint-staged": "10.5.1",
"minimist": "1.2.5",
"mocha": "8.1.3",
"mri": "1.1.6",
"node-fetch": "2.6.1",
"prettier": "2.1.2",
"spectron": "10.0.1",
"ts-loader": "8.0.3",
"typescript": "4.0.5",
"webpack": "4.44.2",
"webpack-cli": "3.3.12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
],
"*.{json,md,yml}": [
"prettier --write"
]
},
"main": "dist/main.js",
"name": "excalidraw-desktop",
"scripts": {
"build": "yarn download && yarn build:app && yarn build:dist",
"build:app": "webpack",
"build:dist": "node ./tasks/dist.js",
"download": "node ./tasks/download.js",
"fix": "yarn fix:other && yarn fix:code",
"fix:code": "yarn lint:code --fix",
"fix:other": "yarn prettier --write",
"postinstall": "yarn download",
"preinstall": "npx mkdirp dist",
"prettier": "prettier \"**/*.{json,md,yml}\"",
"start": "yarn build:app && electron ./dist/main.js --devtools",
"test": "yarn lint && yarn test:spec",
"test:spec": "mocha --exit",
"lint": "yarn lint:code && yarn lint:other",
"lint:code": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"lint:other": "yarn prettier --ignore-path .gitignore --list-different",
"watch": "webpack -w"
},
"version": "0.0.1",
"dependencies": {
"electron-store": "^5.2.0",
"html-webpack-plugin": "^4.3.0"
}
}