-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
147 lines (147 loc) · 4.39 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
142
143
144
145
146
147
{
"name": "lol-skins-viewer-app",
"version": "0.0.0",
"private": true,
"author": {
"name": "S. Coimbra",
"url": "https://github.com/s-coimbra21"
},
"bin": {
"electron": "./node_modules/.bin/electron"
},
"build": {
"appId": "org.jinx.LoLSkinsViewer",
"category": "public.app-category.tools",
"publish": [
{
"provider": "github"
}
],
"directories": {
"buildResources": "build",
"output": "release"
},
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"files": [
"dist/renderer/",
"node_modules/",
"dist/app.html",
"dist/main.js",
"dist/main.js.map",
"package.json"
],
"win": {
"target": "nsis"
},
"linux": {
"target": [
"deb",
"AppImage"
]
}
},
"devDependencies": {
"asar": "^0.13.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.8",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-webpack-loaders": "^0.8.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"concurrently": "^3.2.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^3.1.3",
"css-loader": "^0.26.0",
"devtron": "^1.4.0",
"electron": "^1.4.10",
"electron-builder": "^13.5.0",
"electron-devtools-installer": "^2.1.0",
"enzyme": "^2.7.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-formatter-pretty": "^1.1.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-react": "^6.7.1",
"express": "^4.14.1",
"extract-text-webpack-plugin": "^1.0.1",
"fbjs-scripts": "^0.7.1",
"file-loader": "^0.10.0",
"html-webpack-plugin": "^2.28.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^18.1.0",
"jest-enzyme": "^2.1.2",
"jsdom": "^9.11.0",
"json-loader": "^0.5.4",
"minimist": "^1.2.0",
"node-sass": "^4.5.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.2",
"redux-logger": "^2.8.1",
"sass-loader": "^4.1.1",
"spectron": "^3.4.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.10.0",
"webpack-hot-middleware": "^2.16.1",
"webpack-merge": "^1.0.1",
"webpack-validator": "^2.2.9"
},
"devEngines": {
"node": ">=7.x",
"npm": ">=3.x"
},
"keywords": [
"electron",
"react",
"league",
"league of legends"
],
"license": "MIT",
"main": "main.js",
"productName": "LoLSkinsViewer",
"repository": "LeagueDevelopers/lol-skins-viewer",
"scripts": {
"build": "npm run clean && npm run build-main && npm run build-renderer",
"build-main": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.electron.js --profile --colors",
"build-renderer": "cross-env NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config webpack.config.production.js --profile --colors",
"clean": "rimraf app/dist",
"dev": "cross-env DEBUG=lsv:* npm run hot-server -- --start-hot",
"hot-server": "cross-env NODE_ENV=development node --max_old_space_size=2096 -r babel-register server.js",
"lint": "eslint --ignore-path .gitignore --format=node_modules/eslint-formatter-pretty app test *.js",
"release": "npm run build && build",
"package-win": "npm run build && build --win --x64",
"postinstall": "concurrently \"install-app-deps\" \"node node_modules/fbjs-scripts/node/check-dev-engines.js package.json\"",
"start-hot": "cross-env HOT=1 NODE_ENV=development electron ./app/dist/main",
"test": "jest --config .jest.json"
}
}