forked from Automattic/simplenote-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.44 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
{
"name": "simplenote",
"productName": "Simplenote",
"version": "1.0.7",
"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": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=development npm run build:dll && npm run build:app",
"build:app": "`npm bin`/webpack --config ./webpack.config.js",
"build:dll": "`npm bin`/webpack --config ./webpack.config.dll.js",
"build:prod": "NODE_ENV=production `npm bin`/webpack -p --config ./webpack.config.dll.js && `npm bin`/webpack -p --config ./webpack.config.js",
"lint": "`npm bin`/eslint lib",
"start": "NODE_ENV=hot npm run build && `npm bin`/webpack-dev-server --config ./webpack.config.js --content-base dist --host 0.0.0.0 --port 4000 --hot --inline"
},
"author": "",
"license": "ISC",
"engines": {
"node": "5.12.0",
"npm": "3.8.6"
},
"devDependencies": {
"appcache-webpack-plugin": "1.2.1",
"autoprefixer": "6.3.3",
"babel": "5.8.35",
"babel-core": "5.8.35",
"babel-eslint": "4.1.8",
"babel-loader": "5.4.0",
"babel-plugin-react-transform": "1.1.1",
"classnames": "2.2.3",
"css-loader": "0.19.0",
"electron": "1.3.2",
"electron-builder": "2.8.4",
"electron-packager": "7.5.1",
"eslint": "1.10.3",
"eslint-loader": "1.3.0",
"eslint-plugin-react": "3.16.1",
"express": "4.13.4",
"html-webpack-plugin": "1.7.0",
"jade": "1.11.0",
"jade-loader": "0.7.1",
"json-loader": "0.5.4",
"node-sass": "3.4.2",
"postcss-loader": "0.7.0",
"react-onclickoutside": "4.5.0",
"react-transform-catch-errors": "1.0.2",
"react-transform-hmr": "1.0.4",
"redbox-react": "1.2.2",
"sass-loader": "3.1.2",
"style-loader": "0.12.4",
"webpack": "1.13.2",
"webpack-dev-server": "1.16.2"
},
"dependencies": {
"cookie": "0.2.3",
"create-hash": "1.1.2",
"draft-js": "0.9.1",
"highlight.js": "9.7.0",
"lodash": "4.6.1",
"marked": "0.3.5",
"moment": "2.12.0",
"promise": "7.1.1",
"react": "15.3.0",
"react-addons-pure-render-mixin": "15.3.0",
"react-addons-update": "15.3.0",
"react-dom": "15.3.0",
"react-redux": "4.4.0",
"redux": "3.3.1",
"redux-localstorage": "0.4.0",
"redux-thunk": "1.0.3",
"serve-favicon": "2.3.0",
"simperium": "0.2.5"
}
}