forked from Automattic/simplenote-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.4 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "simplenote",
"description": "Light, clean, and free. Simplenote is modern note taking app available for iOS, Android, Mac, Windows, Linux, and the web.",
"author": {
"name": "Automattic, Inc.",
"email": "support@simplenote.com"
},
"productName": "Simplenote",
"version": "1.2.1",
"main": "desktop/index.js",
"license": "GPL-2.0",
"homepage": "https://simplenote.com",
"scripts": {
"dev": "make dev",
"start": "make start NODE_ENV=development",
"test": "make test",
"lint": "make lint",
"format": "make format",
"build": "make build"
},
"repository": {
"type": "git",
"url": "git://github.com/Automattic/simplenote-electron.git"
},
"engines": {
"node": ">= 7.9.0",
"npm": ">= 6.4.0"
},
"browserslist": [
"electron >=2"
],
"jest": {
"globals": {
"config": {
"appVersion": "foo"
}
},
"roots": [
"desktop",
"lib"
],
"setupTestFrameworkScriptFile": "<rootDir>setup-tests.js",
"testRegex": "(/test/.*\\.jsx?)|(test\\.jsx?)$"
},
"prettier": {
"bracketSpacing": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@adlk/misty": "^0.1.0",
"@babel/core": "7.0.0",
"@babel/plugin-proposal-class-properties": "7.0.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/preset-react": "7.0.0",
"ajv": "6.5.3",
"autoprefixer": "7.1.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "7.2.3",
"babel-loader": "8.0.0",
"classnames": "2.2.5",
"concurrently": "^4.0.1",
"css-loader": "0.28.9",
"electron": "2.0.8",
"electron-builder": "20.28.2",
"electron-packager": "9.1.0",
"electron-rebuild": "^1.8.2",
"enzyme": "3.5.0",
"enzyme-adapter-react-16.2": "1.1.0",
"eslint": "4.18.0",
"eslint-config-prettier": "2.9.0",
"eslint-loader": "2.0.0",
"eslint-plugin-jest": "21.12.1",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.6.1",
"hard-source-webpack-plugin": "0.12.0",
"html-webpack-plugin": "3.2.0",
"jest": "23.5.0",
"node-sass": "4.9.3",
"postcss-loader": "2.1.0",
"prettier": "1.10.2",
"react-dom": "16.2.0",
"react-onclickoutside": "6.7.1",
"react-test-renderer": "16.2.0",
"sass-loader": "6.0.6",
"style-loader": "0.20.2",
"wait-on": "^3.0.1",
"webpack": "4.5.0",
"webpack-cli": "2.0.14",
"webpack-dev-server": "3.1.3"
},
"dependencies": {
"cookie": "0.3.1",
"create-hash": "1.1.3",
"crypto-random-string": "1.0.0",
"draft-js": "0.10.5",
"draft-js-simpledecorator": "1.0.2",
"electron-spellchecker": "^1.1.2",
"electron-window-state": "4.1.1",
"focus-visible": "^4.1.5",
"highlight.js": "9.12.0",
"isemail": "3.1.1",
"jszip": "3.1.5",
"lodash": "4.17.5",
"moment": "2.20.1",
"promise": "7.1.1",
"prop-types": "15.6.0",
"react": "16.2.0",
"react-addons-update": "15.6.2",
"react-modal": "3.6.1",
"react-overlays": "0.8.3",
"react-redux": "5.0.7",
"react-virtualized": "9.18.5",
"redux": "3.7.2",
"redux-localstorage": "0.4.1",
"redux-thunk": "2.2.0",
"sanitize-filename": "1.6.1",
"showdown": "1.8.6",
"simperium": "0.3.3",
"valid-url": "1.0.9"
},
"optionalDependencies": {
"appdmg": "0.5.2"
}
}