-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.84 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.84 KB
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
{
"name": "devChatRoom",
"main": "src/main/main.js",
"author": "abouthiroppy <git@about-hiroppy.com http://about-hiroppy.com",
"version": "0.0.1",
"license": "MIT",
"description": "",
"keywords": [],
"engines": {
"node": ">= 7.0.0"
},
"scripts": {
"test": "jest --coverage",
"flow": "flow",
"lint": "npm run lint:js && npm run lint:css",
"start": "npm run start:main & npm run start:renderer",
"build": "NODE_ENV=production npm run build:main && NODE_ENV=production npm run build:render",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"lint:js": "eslint .",
"lint:css": "stylelint src/**/*.css",
"postinstall": "npm run flow-typed",
"start:main": "electron .",
"start:main-tmp": "webpack --config ./webpack.main.config.js && electron .",
"build:main": "webpack --config ./webpack.main.config.js",
"build:render": "webpack --config ./webpack.renderer.config.js",
"flow-typed": "flow-typed install",
"test:watch": "jest --watch --coverage",
"package:osx": "npm run build && build --mac --x64",
"start:renderer": "webpack-dev-server --config ./webpack.renderer.config.js"
},
"jest": {
"moduleNameMapper": {
"^.+\\.(css)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"js"
],
"snapshotSerializers": [
"./node_modules/jest-serializer-enzyme"
]
},
"build": {
"appId": "com.electron.foo",
"files": [
"dist",
"index.html",
"package.json",
"build"
],
"mac": {
"target": "default"
},
"directories": {
"output": "docs"
}
},
"dependencies": {
"classnames": "^2.2.5",
"devchat": "0.0.1",
"electron-devtools-installer": "^2.2.0",
"electron-gh-releases": "^2.0.4",
"material-ui": "^0.18.3",
"menubar": "^5.2.3",
"normalize.css": "^7.0.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.6",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.7.0",
"redux-saga": "^0.15.3"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.0",
"babel-plugin-dynamic-import-node": "^1.0.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-1": "^6.24.1",
"babili-webpack-plugin": "^0.1.1",
"case-sensitive-paths-webpack-plugin": "^2.1.1",
"conventional-changelog-cli": "^1.3.1",
"css-loader": "^0.28.4",
"electron": "^1.6.11",
"electron-builder": "^19.6.1",
"enzyme": "^2.8.2",
"eslint": "^4.0.0",
"eslint-config-sky": "^1.6.2",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"flow-bin": "^0.48.0",
"flow-status-webpack-plugin": "^0.1.7",
"flow-typed": "^2.1.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^20.0.4",
"jest-serializer-enzyme": "^1.0.0",
"jsdom": "^11.0.0",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^2.11.0",
"postcss-loader": "^2.0.6",
"postcss-mixins": "^6.0.0",
"postcss-reporter": "^4.0.0",
"postcss-smart-import": "^0.7.4",
"react-addons-test-utils": "^15.6.0",
"react-hot-loader": "^3.0.0-beta.7",
"react-test-renderer": "^15.6.1",
"redux-devtools": "^3.4.0",
"redux-mock-store": "^1.2.3",
"redux-saga-test-plan": "^3.1.0",
"style-loader": "^0.18.2",
"stylelint": "^7.11.1",
"stylelint-config-sky": "^1.0.1",
"url-loader": "^0.5.9",
"webpack": "^3.0.0",
"webpack-dashboard": "^0.4.0",
"webpack-dev-server": "^2.5.0",
"webpack-merge": "^4.1.0"
}
}