forked from gotchoices/MyCHIPs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.64 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
118
119
120
{
"name": "mychips",
"version": "0.2.0",
"description": "Reference MyCHIPs server",
"main": "lib/mychips.js",
"preferGlobal": "true",
"author": "Kyle Bateman",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/gotchoices/MyCHIPs/issues"
},
"homepage": "https://gotchoices.org/mychips",
"directories": {
"dist": "dist",
"static": "static"
},
"bin": {
"mychips": "mychips.js"
},
"scripts": {
"test": "mocha test/mocha/all.js",
"dev-hot": "webpack-dev-server --mode development --hot --config build/webpack.config",
"dev-build": "webpack --mode development --watch --progress --config build/webpack.config",
"build": "webpack --mode production --config build/webpack.config",
"build-schema": "cd schema; make schema",
"contract-hashes": "cd contract; ./hashes *.yaml",
"profile": "webpack --config build/webpack.config --profile --json >/tmp/webpack-stats.json",
"develop": "bin/develop",
"dev-server": "bin/mychips.js --webPort=0",
"dev": "npm-run-all --parallel dev-build dev-server",
"server": "bin/mychips.js",
"cert": "wyclif-cert",
"initcerts": "bin/localcerts web",
"agentcheck": "bin/agents check",
"start": "bin/localcerts -b web && bin/agents check && bin/mychips.js",
"adminticket": "bin/adminticket -o test/local/admin.json",
"docker": "source build/config.sh && docker-compose -f build/compose-prod.yml up",
"docker-dev": "source build/config.sh dev && docker-compose -f build/compose-dev.yml up",
"docker-stop": "source build/config.sh && docker-compose -f build/compose-prod.yml down",
"model": "test/sim/model -m 2",
"builddb": "cd schema; make objects",
"preversion": "npm-run-all --parallel contract-hashes build-schema build tsc && git add -A",
"tsc": "cd lib && ../node_modules/typescript/bin/tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/gotchoices/MyCHIPs.git"
},
"keywords": [
"digital",
"crypto",
"currency",
"private",
"credit",
"money",
"blockchain",
"bitcoin"
],
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.16.0",
"d3": "^7.4.2",
"frame-stream": "^2.1.0",
"hash.js": "^1.1.7",
"interactjs": "^1.10.11",
"ip-address": "^8.1.0",
"jquery": "^3.6.0",
"js-yaml": "^4.1.0",
"json-stable-stringify": "^1.0.1",
"mathjs": "^9.5.0",
"node-cron": "^3.0.2",
"node-fetch": "^2.6.7",
"nodemailer": "^6.8.0",
"noise-protocol": "^3.0.1",
"pdfmake": "^0.2.7",
"pg-format": "^1.0.4",
"qr-image": "^3.2.0",
"sharp": "^0.32.1",
"string-hash": "^1.1.3",
"uuid": "^8.3.2",
"vue": "2.7",
"winston": "^3.8.2",
"ws": "^7.5.5",
"wyclif": "^1.0.21",
"wylib": "^1.0.34",
"wyselib": "^1.0.32",
"wyseman": "^1.1.13",
"yaml": "^1.10.2",
"yargs": "^15.4.1",
"yargs-parser": "^18.1.3"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"element-resize-detector": "^1.2.3",
"fast-csv": "^4.3.6",
"file-loader": "^6.2.0",
"glob": "^7.2.0",
"less": "^3.13.1",
"less-loader": "^10.2.0",
"mocha": "^9.1.3",
"mongodb": "^3.7.1",
"npm-run-all": "^4.1.5",
"prettier": "2.6.1",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"style-loader": "^1.3.0",
"tail": "^2.2.4",
"typescript": "^4.5.5",
"vue-loader": "^17.2.2",
"vue-router": "^3.5.2",
"vue-template-compiler": "^2.6.14",
"webpack": "5.76.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
}
}