forked from OpenBazaar/openbazaar-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.24 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
{
"name": "openbazaar-desktop",
"productName": "OpenBazaar Desktop Client",
"version": "2.1.0",
"description": "Decentralized p2p marketplace for Bitcoin",
"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": "mocha --compilers js:babel-core/register --recursive",
"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": "babel-node ./bin/processIndexForBuild.js",
"copy-js-subfolders": "copyfiles -u 1 'js/languages/**/*' 'js/templates/**/*' prod",
"babel": "babel js --out-dir prod; 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"
},
"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.10.1",
"babel-eslint": "^6.0.5",
"browser-sync": "^2.13.0",
"chai": "^3.5.0",
"copyfiles": "^1.0.0",
"cross-env": "^1.0.8",
"electron": "^1.7.11",
"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.1",
"grunt-electron-installer": "^2.1.0",
"electron-winstaller": "2.5.2",
"jsdom": "9.4.1",
"mocha": "^2.5.3",
"node-sass": "^4.7.2",
"nodemon": "^1.9.2",
"npm-run-all": "^2.2.0",
"sinon": "^1.17.6"
},
"pre-commit": [
"lint",
"test"
],
"dependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.9.0",
"backbone": "^1.3.3",
"backbone.localstorage": "^1.1.16",
"bech32": "^0.0.3",
"bitcoin-convert": "^1.0.4",
"bitcore-lib": "^0.14.0",
"cropit": "^0.5.1",
"homedir": "^0.6.0",
"ionicons": "^2.0.1",
"is_js": "^0.8.0",
"jquery": "^3.0.0",
"jquery-zoom": "^1.7.18",
"moment": "^2.17.1",
"multihashes": "^0.2.2",
"node-polyglot": "^2.0.0",
"open": "0.0.5",
"qr-encode": "^0.3.0",
"sanitize-html": "^1.14.1",
"selectize": "0.12.4",
"sortablejs": "^1.5.0-rc1",
"trumbowyg": "^2.7.2",
"trunk8": "0.0.1",
"twemoji": "^2.2.5",
"underscore": "^1.8.3",
"url-parse": "^1.1.7",
"velocity-animate": "^1.2.3",
"yargs": "^6.6.0"
}
}