forked from NebulousLabs/Sia-UI
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.16 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
{
"name": "Sia-UI",
"version": "v1.1.0",
"main": "dist/main.js",
"author": "NebulousLabs",
"description": "A UI application for interfacing with Sia",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^6.0.4",
"babel-register": "^6.18.0",
"babel-runtime": "^6.18.0",
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"enzyme": "^2.6.0",
"eslint": "^3.10.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-react": "^6.7.1",
"glob": "^7.0.4",
"jsdom": "^9.8.3",
"mocha": "^3.0.1",
"proxyquire": "^1.7.10",
"ps-tree": "^1.1.0",
"react-addons-test-utils": "^15.1.0",
"sinon": "^1.17.4",
"spectron": "^3.4.0"
},
"dependencies": {
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2016": "^6.0.11",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-3": "^6.5.0",
"bignumber.js": "^2.1.3",
"electron": "^1.3.2",
"graceful-fs": "^4.1.11",
"immutable": "^3.8.1",
"json-loader": "^0.5.4",
"mkdirp": "^0.5.1",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-saga": "^0.13.0",
"sia.js": "^0.3.4",
"webpack": "^1.13.1"
},
"scripts": {
"start": "webpack && electron .",
"debug": "webpack -d && electron .",
"build-production": "webpack -p --config ./webpack.production.config.js",
"build": "webpack",
"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": "mocha --require test/dom.setup.js --compilers js:babel-register --recursive ./test",
"test": "npm run lint && npm run build && npm run test-args",
"lint": "eslint --max-warnings 0 ./index.js ./plugins ./js ./test",
"lint-fix": "eslint --fix ./index.js ./plugins ./js ./test"
},
"repository": {
"type": "git",
"url": "git://github.com/NebulousLabs/Sia-UI.git"
},
"bugs": {
"url": "https://github.com/NebulousLabs/Sia-UI/issues"
}
}