This repository has been archived by the owner on Nov 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
117 lines (117 loc) · 4.35 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
{
"name": "Sia-UI",
"version": "v1.3.3",
"releaseName": "Capricorn",
"main": "dist/main.js",
"author": "NebulousLabs",
"description": "A UI application for interfacing with Sia",
"license": "MIT",
"scripts": {
"debug": "webpack -d && electron --remote-debugging-port=9222 .",
"format": "prettier-standard 'js/**/*.js' 'plugins/**/*.js'",
"build-production": "webpack --config ./webpack.production.config.js",
"watch": "webpack --watch",
"clean": "rm -rf release doc/Sia-UI node_modules Sia config.json **/*.swp npm-debug.log",
"fresh": "npm run clean && npm install && npm start",
"test-args": "BABEL_ENV=test mocha --require babel-polyfill --require test/dom.setup.js --compilers js:babel-register --recursive ./test --exit",
"test": "npm run lint && npm run build && npm run test-args",
"precommit": "lint-staged",
"start": "cross-env NODE_ENV=production electron .",
"dev": "cross-env START_HOT=1 node -r babel-register ./internals/scripts/CheckPortInUse.js && cross-env START_HOT=1 npm run start-renderer-dev",
"start-renderer-dev": "cross-env NODE_ENV=development node --trace-warnings -r babel-register ./node_modules/webpack-dev-server/bin/webpack-dev-server --config ./internals/webpack/webpack.config.renderer.dev.js",
"start-main-dev": "cross-env HOT=1 NODE_ENV=development electron -r babel-register ./app.js",
"build": "rimraf dist && concurrently \"npm run build-main\" \"npm run build-renderer\"",
"build-main": "cross-env NODE_ENV=production node --trace-warnings -r babel-register ./node_modules/webpack/bin/webpack --config ./internals/webpack/webpack.config.main.prod.js --colors",
"build-renderer": "cross-env NODE_ENV=production node --trace-warnings -r babel-register ./node_modules/webpack/bin/webpack --config ./internals/webpack/webpack.config.renderer.prod.js --colors",
"lint": "standard --max-warnings 0 ./index.js ./plugins ./js ./test",
"lint-fix": "standard --fix ./index.js ./plugins ./js ./test"
},
"lint-staged": {
"linters": {
"js/**/*.js": [
"prettier-standard"
],
"plugins/**/*.js": [
"prettier-standard"
]
}
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-optimize": "1.0.1",
"babel-preset-stage-0": "6.24.1",
"babel-preset-stage-3": "^6.5.0",
"babel-register": "^6.24.0",
"babel-runtime": "^6.23.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"concurrently": "3.6.0",
"cross-env": "5.2.0",
"css-loader": "0.28.11",
"detect-port": "1.2.3",
"electron-css-reload": "1.0.8",
"enzyme": "^2.8.0",
"eslint": "^3.18.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^7.0.1",
"glob": "^7.1.1",
"husky": "0.14.3",
"jsdom": "^9.12.0",
"lint-staged": "7.2.0",
"mini-css-extract-plugin": "0.4.0",
"mocha": "5.2.0",
"prettier-standard": "8.0.1",
"prop-types": "^15.5.10",
"proxyquire": "^1.8.0",
"ps-tree": "^1.1.0",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "4.3.3",
"react-test-renderer": "^15.5.4",
"rimraf": "2.6.2",
"sinon": "^2.2.0",
"spectron": "3.8.0",
"standard": "11.0.1",
"uglify-js": "git://github.com/mishoo/UglifyJS2.git#harmony-v2.8.22",
"uglifyjs-webpack-plugin": "1.2.7",
"webpack": "4.12.1",
"webpack-bundle-analyzer": "2.13.1",
"webpack-cli": "3.0.8",
"webpack-dev-server": "3.1.4",
"webpack-merge": "4.1.3"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"bignumber.js": "^4.1.0",
"electron": "2.0.2",
"graceful-fs": "^4.1.11",
"immutable": "^3.8.1",
"mkdirp": "^0.5.1",
"object.entries": "^1.0.4",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-saga": "^0.15.6",
"semver": "^5.4.1",
"sia.js": "^0.4.2"
},
"repository": {
"type": "git",
"url": "git://github.com/NebulousLabs/Sia-UI.git"
},
"bugs": {
"url": "https://github.com/NebulousLabs/Sia-UI/issues"
},
"devEngines": {
"node": ">=7.x",
"npm": ">=4.x",
"yarn": ">=0.21.3"
}
}