-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
66 lines (66 loc) · 2.15 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
{
"name": "BankBox",
"version": "0.1.1",
"main": "main.js",
"description": "ColoredCoins desktop wallet application for digital currency issuance and management",
"scripts": {
"start": "npm run build && electron .",
"prepublish": "npm run build",
"build": "npm run babel && npm run browserify && npm run less",
"babel": "babel --presets react,es2015-without-strict app/public/js/src/components --out-dir app/public/js/build/components",
"browserify": "browserify -r react -r react-dom -r lodash | uglifyjs > app/public/js/build/bundle.js",
"less": "lessc app/public/css/src/main.less app/public/css/build/main.css",
"watch": "nodemon --exec \"npm run start\" --ext js,less,css,jade --ignore build/ --ignore dist/",
"package": "node ./bin/package.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/Colored-Coins/BankBox"
},
"license": "AGPL-3.0",
"dependencies": {
"async": "^2.3.0",
"backbone": "^1.3.3",
"bootstrap": "^3.3.7",
"bootstrap-validator": "^0.11.9",
"casimircore": "^0.11.3",
"coloredcoins-full-node": "^0.1.1",
"coloredcoins-sdk": "^0.3.0",
"download": "^6.0.0",
"electron-context-menu": "^0.8.0",
"express": "^4.15.3",
"iniparser": "^1.0.5",
"jade": "^1.11.0",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"normalize.css": "^6.0.0",
"ospath": "^1.2.2",
"qrcode": "0.8.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"socket.io-client": "^1.7.3",
"timediff": "^1.1.1"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-es2015-without-strict": "0.0.4",
"babel-preset-react": "^6.23.0",
"browserify": "^14.3.0",
"cross-zip": "^2.1.5",
"dedent": "^0.7.0",
"electron": "1.6.6",
"electron-inspector": "^0.1.4",
"electron-packager": "^8.7.0",
"electron-rebuild": "^1.5.7",
"electron-winstaller": "^2.5.2",
"innosetup-compiler": "^5.5.9",
"less": "^2.7.2",
"minimist": "^1.2.0",
"nodemon": "^1.11.0",
"uglify-js": "^3.0.11",
"rimraf": "^2.6.1",
"run-series": "^1.1.4"
}
}