-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"name": "kaholo-agent",
"version": "6.2.1",
"description": "Agent for Kaholo",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "AGENT_KEY=testkey jest --runInBand tests/unit-tests/*",
"dev": "NODE_ENV=dev nodemon --inspect=0.0.0.0:9333 app.js",
"prepare-public-repo": "./prepare-public-repo.sh"
},
"author": "Kaholo team",
"license": "ISC",
"dependencies": {
"@kaholo/shared": "file:shared",
"decache": "^4.6.1",
"diskspace": "2.0.0",
"dotenv": "8.2.0",
"extract-zip": "^2.0.1",
"fs-extra": "9.0.0",
"get-port": "^5.1.1",
"mkdirp": "1.0.4",
"node-fetch": "^2.6.7",
"node-os-utils": "1.3.7",
"rimraf": "^3.0.2",
"superagent": "3.8.2",
"uuid": "8.3.1",
"winston": "3.3.3"
},
"devDependencies": {
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"jest-environment-node": "^26.6.2",
"nodemon": "3.0.1",
"supertest": "^6.0.1"
},
"nodemonConfig": {
"ignore": [
"**/node_modules/*",
"**/uploads/*",
"**/libs/*",
"**/tmp/*"
],
"ext": "js,json,ts",
"ignoreRoot": [
".git"
]
}
}