This repository has been archived by the owner on Jul 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
75 lines (75 loc) · 2.65 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
{
"name": "flashair-file-manager",
"version": "0.3.2",
"description": "The application to browse and download files on FlashAir™ via the network.",
"homepage": "https://github.com/FlashAirDevelopers/FlashAirFileManager",
"main": "./src/main/main.js",
"scripts": {
"dist:win": "npm config set msvs_version 2015 && npm config set scripts-prepend-node-path true && cross-env NODE_ENV=production npm run compile && electron-builder --win --x64",
"pack:win": "npm config set msvs_version 2015 && npm config set scripts-prepend-node-path true && cross-env NODE_ENV=production npm run compile && electron-builder --win --x64 --dir",
"pack:win-dev": "npm config set msvs_version 2015 && npm config set scripts-prepend-node-path true && cross-env NODE_ENV=development npm run compile && electron-builder --win --x64 --dir",
"compile": "webpack --config webpack.app.config.js",
"lint": "eslint src/**/*.js",
"fix": "eslint --fix",
"checkstyle": "eslint --format checkstyle",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"flashair",
"iot",
"filer",
"electron",
"javascript"
],
"author": "FlashAir Developers",
"license": "Apache-2.0",
"dependencies": {
"@openid/appauth": "^0.3.1",
"about-window": "^1.9.1",
"bootstrap": "^3.3.7",
"bootstrap-notify": "^3.1.3",
"bootstrap-select": "^1.12.4",
"electron-json-storage": "^4.0.2",
"electron-log": "^2.2.14",
"es6-promise": "^4.1.1",
"handlebars": "^4.0.11",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.2.1",
"js-base64": "^2.4.3",
"jssha": "^2.3.1",
"keytar": "^4.1.0",
"source-map-support": "^0.5.3",
"spin.js": "^3.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.3.0",
"babel-preset-es2015": "^6.24.1",
"babel-runtime": "^6.26.0",
"clean-webpack-plugin": "^0.1.18",
"cross-env": "^5.1.3",
"css-hot-loader": "^1.3.6",
"css-loader": "^0.28.9",
"electron": "^1.8.2",
"electron-builder": "^19.56.0",
"electron-webpack": "^1.12.1",
"eslint": "^4.17.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"handlebars-loader": "^1.6.0",
"node-gyp": "^3.6.2",
"node-loader": "^0.6.0",
"rcedit": "^0.9.0",
"shebang-loader": "^0.0.1",
"style-loader": "^0.20.1",
"url-loader": "^0.6.2",
"webpack": "^3.10.0"
}
}