forked from Chia-Network/cadt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 3.83 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
{
"name": "climate-warehouse",
"version": "1.2.26",
"private": true,
"bin": "build/server.js",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"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/climate-warehouse/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.19.0",
"char-spinner": "^1.0.1",
"cli-spinner": "^0.2.10",
"cli-spinners": "^2.6.1",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dotenv": "^10.0.0",
"express": "~4.16.1",
"express-fileupload": "^1.2.1",
"express-joi-validation": "^5.0.0",
"joi": "^17.5.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"log-update": "^4.0.0",
"mysql2": "^2.3.3",
"mysql2-promise": "^0.1.4",
"node-xlsx": "^0.21.0",
"random-hash": "^4.0.1",
"regenerator-runtime": "^0.13.9",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"rxjs": "^7.5.1",
"sequelize": "^6.17.0",
"sequelize-mock": "^0.10.2",
"socket.io": "^4.4.0",
"socket.io-client": "^4.4.0",
"sqlite3": "5.0.11",
"toad-scheduler": "^1.6.0",
"updeep": "^1.2.1",
"uuidv4": "^6",
"winston": "^3.7.2",
"winston-daily-rotate-file": "^4.6.1"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "^8.22.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-react": "^7.26.1",
"git-authors-cli": "^1.0.36",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"mocha": "^9.2.0",
"prettier": "^2.4.1",
"semver": "^7.3.5",
"sinon": "^12.0.1",
"standard-version": "^9.3.2",
"supertest": "^6.1.6"
},
"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>"
]
}