-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.18 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 4.18 KB
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
121
122
123
124
125
126
127
128
129
130
131
{
"name": "mychips",
"version": "0.3.1",
"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": "npm-run-all test:unit test:schema test:proto test:sys test:clean",
"test-coverage": "nyc npm run test",
"test:unit": "mocha test/auto/unit/all.js",
"test:schema": "mocha test/auto/schema/all.js",
"test:proto": "mocha test/auto/proto/all.js",
"test:sys": "mocha test/auto/sys/all.js",
"test:clean": "mocha test/auto/clean.js",
"dev-hot": "webpack-dev-server --mode development --hot --config build/webpack.config",
"dev-build": "webpack --mode development --watch --progress --config build/webpack.config --stats-error-details",
"build": "webpack --mode production --config build/webpack.config",
"build-schema": "cd schema; make schema",
"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": "docker-compose -f build/compose-prod.yml --env-file build/common.env up -d",
"docker-dev": "node build/devconfig.js && docker-compose -f build/compose-dev.yml --env-file=build/common.env --env-file=local/compose-dev.env up -d",
"docker-stop": "docker-compose -f build/compose-prod.yml --env-file build/common.env down",
"docker-x": "DOCKER_CLI_HINTS=false docker exec -it mychips0",
"model": "test/sim/model -m 2",
"builddb": "cd schema; make objects",
"preversion": "npm-run-all --parallel 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.24.4",
"@babel/preset-env": "^7.24.4",
"d3": "^7.9.0",
"express": "^4.19.2",
"flat": "^5.0.2",
"frame-stream": "^2.1.0",
"hash.js": "^1.1.7",
"interactjs": "^1.10.27",
"ip-address": "^8.1.0",
"jquery": "^3.7.1",
"js-yaml": "^4.1.0",
"json-stable-stringify": "^1.1.1",
"mathjs": "^9.5.2",
"node-cron": "^3.0.3",
"node-fetch": "^2.7.0",
"nodemailer": "^6.9.13",
"noise-protocol": "^3.0.2",
"pdfmake": "^0.2.10",
"pg-format": "^1.0.4",
"qr-image": "^3.2.0",
"serve-favicon": "^2.5.0",
"sharp": "^0.33.3",
"sinon": "^16.1.3",
"string-hash": "^1.1.3",
"uuid": "^8.3.2",
"winston": "^3.13.0",
"ws": "^7.5.9",
"wyclif": "^1.2.1",
"wylib": "^1.2.1",
"wyselib": "^1.0.34",
"wyseman": "^1.1.13",
"yaml": "^1.10.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.24.1",
"@vue/compiler-sfc": "3.4.19",
"babel-loader": "^8.3.0",
"css-loader": "^6.11.0",
"element-resize-detector": "^1.2.4",
"fast-csv": "^4.3.6",
"file-loader": "^6.2.0",
"glob": "^7.2.3",
"less": "^3.13.1",
"less-loader": "^10.2.0",
"mocha": "^10.2.0",
"mongodb": "^3.7.4",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "2.6.1",
"sass": "^1.75.0",
"sass-loader": "^12.6.0",
"style-loader": "^1.3.0",
"tail": "^2.2.6",
"typescript": "^4.9.5",
"vue": "^3.4.25",
"vue-loader": "^17.4.2",
"vue-router": "^3.6.5",
"webpack": "5.76.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.2"
}
}