forked from OpenBazaar/openbazaar-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.76 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
{
"name": "openbazaar-desktop",
"productName": "OpenBazaar Desktop Client",
"version": "2.4.10",
"serverVersionRequired": "0.14.6",
"description": "Decentralized p2p marketplace that uses Cryptocurrencies.",
"main": "bootstrapper.js",
"scripts": {
"start": "cross-env NODE_ENV=development npm-run-all sass:build process-index --parallel sass:watch index:watch browsersync start-app",
"start-app": "cross-env NODE_ENV=development electron .",
"test": "cross-env BABEL_ENV=development mocha --compilers js:babel-register --recursive --exit",
"test:watch": "npm run test -- --watch",
"lint": "eslint .",
"lint:watch": "nodemon -e js -x \"npm run lint\"",
"sass:build": "node-sass --source-map true --include-path styles styles/main.scss .tmp/styles/main.css",
"sass:watch": "nodemon -e scss -x \"npm run sass:build\"",
"index:watch": "nodemon -w index.html -x \"npm run process-index\"",
"browsersync": "browser-sync start --no-ui -f 'js, .tmp/**/*.css, .tmp/**/*.html, !.tmp/test/**/*'",
"process-index": "cross-env NODE_ENV=development babel-node ./bin/processIndex.js",
"process-index:build": "cross-env BABEL_ENV=production babel-node ./bin/processIndexForBuild.js",
"copy-js-subfolders": "copyfiles -u 1 'js/languages/**/*' 'js/templates/**/*' prod",
"babel": "cross-env BABEL_ENV=production babel js --out-dir prod --ignore \"js/utils/workers/*\";cross-env BABEL_ENV=workers babel js/utils/workers --out-dir prod/utils/workers;cross-env cross-env BABEL_ENV=production babel main.js --out-file mainBuilt.js",
"build": "npm-run-all sass:build --parallel babel process-index:build --sequential copy-js-subfolders",
"binaries": "./build.sh",
"getCryptoData": "cross-env NODE_ENV=development babel-node ./bin/getCryptoData.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenBazaar/openbazaar-desktop.git"
},
"author": "OB1",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenBazaar/openbazaar-desktop/issues"
},
"homepage": "https://github.com/OpenBazaar/openbazaar-desktop#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "6.0.5",
"babel-preset-env": "1.7.0",
"babel-preset-stage-1": "6.24.1",
"babel-register": "6.26.0",
"bluebird": "3.5.5",
"browser-sync": "2.26.7",
"chai": "3.5.0",
"copyfiles": "1.0.0",
"cross-env": "1.0.8",
"draftlog": "1.0.12",
"electron": "6.0.0",
"electron-winstaller": "2.5.2",
"eslint": "2.13.1",
"eslint-config-airbnb": "9.0.1",
"eslint-config-defaults": "9.0.0",
"eslint-plugin-import": "1.10.0",
"eslint-plugin-jsx-a11y": "1.5.3",
"eslint-plugin-react": "5.2.2",
"grunt": "1.0.4",
"grunt-electron-installer": "2.1.0",
"jsdom": "13.1.0",
"json-format": "1.0.1",
"mocha": "5.2.0",
"node-fetch": "2.6.1",
"node-sass": "4.13.1",
"nodemon": "1.19.1",
"npm-run-all": "4.1.5",
"pre-commit": "1.2.2",
"pre-push": "0.1.1",
"sinon": "1.17.6"
},
"pre-push": [
"lint"
],
"dependencies": {
"backbone": "1.3.3",
"backbone.localstorage": "1.1.16",
"bech32": "0.0.3",
"bignumber.js": "9.0.0",
"bitcore-lib": "8.6.0",
"cropit": "0.5.1",
"electron-installer-redhat": "^2.0.0",
"homedir": "0.6.0",
"ionicons": "2.0.1",
"is_js": "0.9.0",
"jquery": "3.5.0",
"jquery-zoom": "1.7.18",
"moment": "2.19.3",
"multihashes": "0.2.2",
"node-polyglot": "2.3.1",
"object-sizeof": "1.4.0",
"qr-encode": "0.3.0",
"sanitize-html": "1.20.0",
"selectize": "0.12.4",
"sortablejs": "1.9.0",
"trumbowyg": "2.18.0",
"trunk8": "0.0.1",
"twemoji": "12.0.4",
"underscore": "1.8.3",
"velocity-animate": "1.5.2",
"workerize": "0.1.7",
"yargs": "6.6.0"
}
}