forked from Automattic/simplenote-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.21 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
{
"name": "simplenote",
"productName": "Simplenote",
"version": "1.1.0-rc1",
"description": "The Simplenote app running as an electron app.",
"main": "desktop/index.js",
"repository": {
"type": "git",
"url": "git://github.com/Automattic/simplenote-electron.git"
},
"scripts": {
"test": "jest",
"build": "NODE_ENV=development npm run build:dll && npm run build:app",
"build:app": "webpack --config ./webpack.config.js",
"build:dll": "webpack --config ./webpack.config.dll.js",
"build:prod":
"NODE_ENV=production webpack -p --config ./webpack.config.dll.js && webpack -p --config ./webpack.config.js",
"format": "prettier --write {desktop,lib,sass}/{**/,*}.{js,json,jsx,sass}",
"lint": "eslint --ext .js --ext .jsx lib",
"start":
"NODE_ENV=hot npm run build && webpack-dev-server --config ./webpack.config.js --content-base dist --host 0.0.0.0 --port 4000 --hot --inline"
},
"author": "",
"license": "ISC",
"engines": {
"node": "7.9.0",
"npm": "4.2.0"
},
"browserslist": ["Chrome >= 58"],
"jest": {
"rootDir": "lib",
"testRegex": "(/test/.*\\.jsx?)|(test\\.jsx?)$"
},
"prettier": {
"bracketSpacing": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"autoprefixer": "7.1.3",
"babel-core": "6.26.0",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.1.2",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"classnames": "2.2.5",
"css-loader": "0.28.7",
"electron": "1.7.5",
"electron-builder": "19.24.1",
"electron-packager": "8.7.2",
"enzyme": "2.9.1",
"eslint": "4.5.0",
"eslint-config-prettier": "2.3.0",
"eslint-loader": "1.9.0",
"eslint-plugin-jest": "20.0.3",
"eslint-plugin-prettier": "2.2.0",
"eslint-plugin-react": "7.3.0",
"html-webpack-plugin": "2.30.1",
"jest-cli": "20.0.4",
"json-loader": "0.5.7",
"node-sass": "4.5.3",
"postcss-loader": "2.0.6",
"prettier": "1.6.1",
"react-addons-test-utils": "15.6.0",
"react-dom": "15.6.1",
"react-onclickoutside": "4.5.0",
"react-test-renderer": "15.6.1",
"redbox-react": "1.5.0",
"sass-loader": "6.0.6",
"style-loader": "0.18.2",
"webpack": "3.5.5",
"webpack-dev-server": "2.7.1"
},
"dependencies": {
"cookie": "0.3.1",
"create-hash": "1.1.3",
"draft-js": "0.10.1",
"draft-js-simpledecorator": "1.0.2",
"electron-window-state": "4.1.1",
"highlight.js": "9.12.0",
"jszip": "3.1.3",
"lodash": "4.17.4",
"moment": "2.18.1",
"promise": "7.1.1",
"react": "15.6.1",
"react-addons-shallow-compare": "15.6.0",
"react-addons-update": "15.6.0",
"react-overlays": "0.8.0",
"react-redux": "5.0.6",
"react-virtualized": "9.9.0",
"redux": "3.7.2",
"redux-localstorage": "0.4.1",
"redux-thunk": "2.2.0",
"sanitize-filename": "1.6.1",
"serve-favicon": "2.4.3",
"showdown": "1.7.2",
"showdown-xss-filter": "0.2.0",
"simperium": "0.2.6"
},
"optionalDependencies": {
"appdmg": "0.4.5"
}
}