-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
141 lines (141 loc) Β· 4.76 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "felony",
"productName": "Felony",
"version": "0.10.3",
"author": {
"name": "Henry Boldizsar",
"email": "[email protected]",
"url": "https://github.com/henryboldi"
},
"description": "Felony makes sending encrypted messages anywhere easy.",
"main": "main.js",
"scripts": {
"test": "cross-env NODE_ENV=test mocha --compilers js:babel-register --recursive --require ./test/setup.js test/**/*.spec.js",
"test-watch": "npm test -- --watch",
"test-e2e": "cross-env NODE_ENV=test mocha --compilers js:babel-register --require ./test/setup.js --require co-mocha ./test/e2e.js",
"lint": "eslint app test *.js",
"hot-server": "node -r babel-register server.js",
"build-main": "cross-env NODE_ENV=production node -r babel-register ./node_modules/.bin/webpack --config webpack.config.electron.js --progress --profile --colors",
"build-renderer": "cross-env NODE_ENV=production node -r babel-register ./node_modules/.bin/webpack --config webpack.config.production.js --progress --profile --colors",
"build": "npm run build-main && npm run build-renderer",
"start": "cross-env NODE_ENV=production electron ./",
"start-hot": "cross-env HOT=1 NODE_ENV=development electron -r babel-register ./main.development",
"package": "cross-env NODE_ENV=production node -r babel-register package.js",
"package-all": "npm run package -- --all",
"postinstall": "node node_modules/fbjs-scripts/node/check-dev-engines.js package.json",
"dev": "concurrently --kill-others \"npm run hot-server\" \"npm run start-hot\""
},
"bin": {
"electron": "./node_modules/.bin/electron"
},
"repository": {
"type": "git",
"url": "git+https://github.com/henryboldi/felony.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/henryboldi/felony/issues"
},
"keywords": [
"electron",
"boilerplate",
"react",
"react-router",
"flux",
"webpack",
"react-hot"
],
"homepage": "https://github.com/henryboldi/felony#readme",
"devDependencies": {
"asar": "^0.11.0",
"babel-core": "^6.7.6",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-webpack-loaders": "^0.4.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"chromedriver": "2.21.2",
"co-mocha": "^1.1.2",
"concurrently": "^2.0.0",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"del": "^2.2.0",
"electron-packager": "^7.0.3",
"electron-prebuilt": "^1.2.6",
"electron-rebuild": "^1.1.3",
"electron-winstaller": "^2.3.1",
"eslint": "^3.10.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"fbjs-scripts": "^0.6.0",
"file-loader": "^0.8.5",
"jsdom": "^8.4.0",
"json-loader": "^0.5.4",
"minimist": "^1.2.0",
"mocha": "^2.4.5",
"node-libs-browser": "^1.0.0",
"react-addons-test-utils": "^15.0.1",
"redux-devtools": "^3.2.0",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.0.11",
"redux-logger": "^2.6.1",
"rollup-plugin-babel": "^2.5.1",
"selenium-webdriver": "^2.53.1",
"sinon": "^1.17.3",
"style-loader": "^0.13.1",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0",
"webpack-node-externals": "^1.2.0"
},
"dependencies": {
"babel-plugin-transform-runtime": "^6.9.0",
"body-parser": "^1.15.0",
"classnames": "^2.2.3",
"css-modules-require-hook": "^4.0.0",
"dynamics.js": "^0.0.9",
"electron-debug": "^0.6.0",
"electron-log": "^1.0.17",
"font-awesome": "^4.6.1",
"immutable": "^3.7.6",
"isomorphic-fetch": "^2.2.1",
"keytar": "^3.0.2",
"lodash": "^3.10.1",
"lowdb": "^0.12.4",
"merge": "^1.2.0",
"node-notifier": "^4.6.0",
"normalize.css": "^3.0.3",
"open": "0.0.5",
"openpgp": "^2.2.1",
"os": "^0.1.0",
"react": "^15.0.2",
"react-copy-to-clipboard": "^4.1.0",
"react-dom": "^15.0.1",
"react-ladda": "^4.0.3",
"react-redux": "^4.4.5",
"react-router": "^2.2.4",
"react-router-redux": "^4.0.2",
"reactcss": "https://github.com/casesandberg/reactcss/tarball/1.0.0-perf",
"redux": "^3.4.0",
"redux-thunk": "^2.0.1",
"source-map-support": "^0.4.0",
"underscore-db": "^0.9.1",
"url-loader": "^0.5.7",
"uuid": "^2.0.1"
},
"devEngines": {
"node": ">=4.x",
"npm": ">=2.x"
}
}