-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
112 lines (112 loc) · 4.03 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
{
"name": "cadt",
"version": "1.7.20",
"_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": ">=20.16"
},
"lint-staged": {
"*.+(js|ts|tsx)": "npm run lint:prettier-eslint"
},
"scripts": {
"start": "npx cross-env NODE_ENV=local node --import=extensionless/register --no-warnings ./src/server.js",
"test": "npm run resetTestDb && npx cross-env NODE_ENV=test USE_SIMULATOR=true mocha --loader node_modules/extensionless/src/register.js tests/**/*.spec.js --reporter spec --exit --timeout 300000",
"release": "npx standard-version",
"resetTestDb": "rm -f ./test.sqlite3 && rm -f ./testMirror.sqlite3",
"resetMirrorDb": "npx sequelize-cli db:drop --env mirror",
"prepare": "husky",
"build": "babel src --keep-file-extension --out-dir build --copy-files && cp package.json ./build && node change-build-package-type-commonjs.cjs",
"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 node20-win-x64 --out-path dist",
"create-mac-x64-dist": "npm run build && npm run prepare-binary && pkg package.json -t node20-macos-x64 --out-path dist",
"create-linux-x64-dist": "npm run build && npm run prepare-binary && pkg package.json -t node20-linux-x64 --out-path dist",
"create-linux-arm64-dist": "npm run build && npm run prepare-binary && pkg package.json -t node20-linux-arm64 --out-path dist"
},
"pkg": {
"scripts": "build/package.json"
},
"extensionless": {
"lookFor": [
"js",
"mjs",
"cjs",
"json"
]
},
"dependencies": {
"async-mutex": "^0.4.1",
"body-parser": "^1.20.2",
"cli-spinner": "^0.2.10",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-joi-validation": "^5.0.1",
"joi": "^17.13.3",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"log-update": "^4.0.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.11.3",
"node-xlsx": "^0.24.0",
"regenerator-runtime": "^0.13.11",
"rxjs": "^7.8.1",
"sequelize": "^6.37.5",
"socket.io": "^4.8.1",
"sqlite3": "^5.1.7",
"superagent": "^8.1.2",
"toad-scheduler": "^3.0.1",
"uuidv4": "^6.2.13",
"winston": "^3.15.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-syntax-import-attributes": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@yao-pkg/pkg": "^6.1.1",
"babel-plugin-module-resolver": "^5.0.2",
"chai": "^5.1.2",
"chai-http": "^5.1.1",
"eslint": "^9.16.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-mocha": "^10.5.0",
"extensionless": "^1.9.9",
"globals": "^15.13.0",
"husky": "^9.1.7",
"mocha": "^11.0.1",
"semver": "^7.6.3",
"sinon": "^19.0.2",
"socket.io-client": "^4.8.1",
"standard-version": "^9.5.0",
"supertest": "^7.0.0"
},
"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>"
]
}