-
Notifications
You must be signed in to change notification settings - Fork 984
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.7 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.7 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
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
{
"name": "mailspring-root",
"version": "0.0.1",
"description": "Packages required to develop and build Mailspring",
"author": "Mailspring",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Foundry376/Mailspring.git"
},
"engines": {
"node": ">=16.17",
"npm": ">=8"
},
"resolutions": {
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0"
},
"dependencies": {
"@electron/packager": "18.3.6",
"@types/better-sqlite3": "^7.6.3",
"@types/debug": "^4.1.2",
"@types/event-kit": "^2.4.0",
"@types/jasmine": "^1.3.1",
"@types/lru-cache": "^5.1.0",
"@types/moment-round": "^1.0.3",
"@types/mousetrap": "^1.6.1",
"@types/optimist": "^0.0.29",
"@types/proxyquire": "^1.3.28",
"@types/raven": "^2.5.3",
"@types/react": "^16.9.0",
"@types/react-color": "^2.14.1",
"@types/react-dom": "^16.9.0",
"@types/react-test-renderer": "^16.8.1",
"@types/react-transition-group": "^1.1.6",
"@types/reflux": "^6.4.2",
"@types/rx-lite": "^4.0.6",
"@types/slate": "^0.44.10",
"@types/slate-base64-serializer": "^0.2.2",
"@types/slate-html-serializer": "^0.6.3",
"@types/slate-plain-serializer": "^0.6.1",
"@types/slate-react": "^0.22.1",
"@types/source-map-support": "^0.4.2",
"@types/underscore": "^1.8.9",
"@types/underscore.string": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chalk": "1.x.x",
"devtron": "^1.4.0",
"electron": "41.0.2",
"electron-winstaller": "5.4.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "3",
"eslint-plugin-react": "7.22.0",
"fs-extra": "2.x.x",
"fs-plus": "2.x.x",
"glob": "7.x.x",
"grunt": "^1.4.1",
"grunt-cli": "^1.4.3",
"jasmine": "2.x.x",
"license-extractor": "^1.0.4",
"load-grunt-parent-tasks": "^0.1.2",
"node-gyp": "^12.2.0",
"prettier": "^1.10.0",
"rimraf": "^2.6.1",
"targz": "^1.0.1",
"temp": "0.8.x",
"typescript": "5.7.3",
"underscore": "^1.13.1"
},
"scripts": {
"postinstall": "node scripts/postinstall.js",
"start": "electron ./app --enable-logging --dev",
"lint": "eslint --fix -c .eslintrc app/src/**/*.ts app/internal_packages/**/*.tsx",
"typecheck": "./node_modules/.bin/tsc -p app/tsconfig.json --noEmit",
"test": "electron ./app --enable-logging --test",
"test-window": "electron ./app --enable-logging --test=window",
"tsc-watch": "tsc -w -p ./app --noEmit",
"build": "grunt build-client --gruntfile=app/build/Gruntfile.js --base=./"
}
}