-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
122 lines (122 loc) · 4.07 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
{
"name": "iconotexte",
"productName": "Iconotexte",
"version": "0.1.0",
"description": "a tool to link images with text",
"main": "main.js",
"scripts": {
"lint": "eslint src --ext .js,.jsx",
"hot-server": "node -r babel-register server.js",
"build-main": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.electron.js --progress --profile --colors",
"build-renderer": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/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 -r babel-polyfill ./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/g-u-i/iconotext.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/g-u-i/iconotext/issues"
},
"keywords": [
"electron",
"boilerplate",
"react",
"react-router",
"flux",
"webpack",
"react-hot"
],
"homepage": "https://github.com/g-u-i/iconotext#readme",
"devDependencies": {
"asar": "^0.11.0",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-remove-console": "^6.8.0",
"babel-plugin-transform-remove-debugger": "^6.8.0",
"babel-plugin-webpack-loaders": "^0.5.0",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"chromedriver": "^2.21.2",
"co-mocha": "^1.1.2",
"concurrently": "^2.1.0",
"cross-env": "^1.0.8",
"css-loader": "^0.23.1",
"del": "^2.2.0",
"devtron": "^1.2.0",
"electron-devtools-installer": "^1.1.2",
"electron-packager": "^7.0.2",
"electron-prebuilt": "^1.2.3",
"electron-rebuild": "^1.1.4",
"eslint": "^2.10.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-import-resolver-webpack": "^0.3.0",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"fbjs-scripts": "^0.7.1",
"jsdom": "^9.2.0",
"json-loader": "^0.5.4",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"minimist": "^1.2.0",
"mocha": "^2.5.3",
"node-libs-browser": "^1.0.0",
"react-addons-test-utils": "^15.1.0",
"redux-logger": "^2.6.1",
"selenium-webdriver": "^2.53.2",
"sinon": "^1.17.4",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"dependencies": {
"async": "^2.0.1",
"baobab": "^2.3.3",
"baobab-react": "^2.1.1",
"css-modules-require-hook": "^4.0.0",
"draft-convert": "^1.3.1",
"draft-js": "^0.7.0",
"draft-js-export-html": "^0.4.0",
"draft-js-import-html": "^0.2.0",
"electron-debug": "^1.0.1",
"file-loader": "^0.9.0",
"font-awesome": "^4.6.3",
"lodash": "^4.13.1",
"node-polyglot": "^2.0.0",
"postcss": "^5.0.21",
"react": "^15.1.0",
"react-addons-css-transition-group": "^15.3.1",
"react-dom": "^15.1.0",
"react-dropzone": "^3.5.3",
"react-webcam": "0.0.12",
"source-map-support": "^0.4.0"
},
"devEngines": {
"node": "4.x || 5.x || 6.x || 7.x",
"npm": "2.x || 3.x"
}
}