forked from Chia-Network/cadt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.62 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
{
"name": "cadt",
"version": "1.6.5",
"_comment": "DONT CHANGE MAJOR UNLESS DATAMODEL CHANGES: The major version corresponds to the datamodel version your using, so 2.0.0 means it'll use datamodel v2",
"private": true,
"bin": "build/server.js",
"type": "module",
"engines": {
"node": ">=16.13"
},
"scripts": {
"requirements-check": "node --experimental-json-modules check_node_version.js",
"start": "npx cross-env NODE_ENV=local node --experimental-specifier-resolution=node --no-warnings ./src/server.js",
"test": "npm run resetTestDb && npx cross-env NODE_ENV=test USE_SIMULATOR=true mocha tests/**/*.spec.js --reporter spec --exit --timeout 300000",
"release": "npx standard-version",
"postinstall": "npm run requirements-check",
"cleandb": "rm -f ~/.chia/cadt/data.sqlite3",
"resetTestDb": "rm -f ./test.sqlite3 && rm -f ./testMirror.sqlite3",
"resetMirrorDb": "npx sequelize-cli db:drop --env mirror",
"prepare": "husky install",
"build": "babel src --keep-file-extension --out-dir build --copy-files && cp package.json ./build",
"build-migrations": "babel migrations --keep-file-extension --out-dir dist/migrations --copy-files",
"prepare-binary": "rm -rf dist && mkdir dist",
"create-win-x64-dist": "npm run build && npm run prepare-binary && pkg package.json -t node16-win-x64 --out-path dist",
"create-mac-x64-dist": "npm run build && npm run prepare-binary && pkg package.json -t node16-macos-x64 --out-path dist",
"create-linux-x64-dist": "npm run build && npm run prepare-binary && pkg package.json -t node16-linux-x64 --out-path dist",
"create-linux-arm64-dist": "npm run build && npm run prepare-binary && pkg package.json -t node16-linux-arm64 --out-path dist"
},
"pkg": {
"scripts": "package.json",
"assets": "package.json"
},
"dependencies": {
"body-parser": "^1.20.2",
"cli-spinner": "^0.2.10",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-joi-validation": "^5.0.1",
"joi": "^17.5.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"log-update": "^4.0.0",
"multer": "*",
"mysql2": "^2.3.3",
"node-xlsx": "^0.23.0",
"regenerator-runtime": "^0.13.9",
"rxjs": "^7.8.1",
"sequelize": "^6.32.0",
"socket.io": "^4.6.1",
"sqlite3": "^5.1.6",
"superagent": "^8.0.9",
"toad-scheduler": "^1.6.0",
"uuidv4": "^6",
"winston": "^3.7.2",
"winston-daily-rotate-file": "^4.6.1"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"babel-plugin-module-resolver": "^5.0.0",
"chai": "^4.3.7",
"chai-http": "^4.4.0",
"eslint": "^8.43.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-mocha": "^10.1.0",
"husky": "^8.0.3",
"semver": "^7.5.3",
"sinon": "^15.2.0",
"socket.io-client": "^4.7.1",
"standard-version": "^9.5.0",
"supertest": "^6.3.3"
},
"standard-version": {
"skip": {
"bump": true,
"commit": true,
"tag": true
}
},
"contributors": [
"Michael Taylor <5665004+MichaelTaylor3D@users.noreply.github.com>",
"Mike Keen <mwk@mikekeen.com>",
"Michael.Taylor <mtaylor@michaeltaylor3d.com>",
"Frantz Arty <artyfrantz@gmail.com>",
"Chris Marslender <chrismarslender@gmail.com>",
"Justin England <justin@jeng.land>",
"Zach Brown <zachary.g.brown@gmail.com>",
"Brad Jodoin <jodoinb@gmail.com>"
]
}