-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "vup_monitors",
"version": "0.1.13",
"bin": "src/index.js",
"main": "src/index.js",
"scripts": {
"nodemon:dev": "cross-env NODE_ENV=development nodemon src/index.js",
"dev": "cross-env NODE_ENV=development node src/index.js",
"start": "cross-env NODE_ENV=production node --trace-warnings src/index.js",
"simulate": "cross-env NODE_ENV=development node src/simulate.js",
"test": "mocha --exit --timeout 60000"
},
"dependencies": {
"@kvs/env": "^2.1.1",
"axios": "^0.21.4",
"form-data": "^4.0.0",
"redis": "^4.0.0-rc.4",
"semver": "^7.3.7",
"winston": "^3.7.2",
"ws": "^7.5.6"
},
"pkg": {
"scripts": [
"./src/**/*.js"
],
"targets": [
"node16-win-x64",
"node16-linux",
"node16-linux-arm64"
],
"outputPath": "dist"
},
"license": "MIT",
"prettier": "@zhuweiyou/prettier-config",
"devDependencies": {
"@zhuweiyou/prettier-config": "^1.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.2.0",
"mocha": "^9.2.2",
"nodemon": "^2.0.7",
"prettier": "^2.3.0"
}
}