-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.87 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
{
"name": "resop",
"version": "1.0.0",
"description": "Remote shell operation API",
"main": "./dist/api.js",
"gypfile": true,
"scripts": {
"serve": "npm run prod",
"build": "npm-run-all clean transpile",
"server": "node dist/api.js",
"dev": "cross-env IN_PROD=false npm-run-all build server",
"prod": "cross-env IN_PROD=true npm-run-all build server",
"transpile": "babel ./src --out-dir dist --copy-files",
"clean": "rimraf dist",
"test": "jest --runInBand",
"test:watch": "jest --runInBand --watch",
"dev:watch": "nodemon"
},
"nodemonConfig": {
"exec": "npm run dev",
"watch": [
"src/**/*",
"src/commands/commands.yml"
],
"ignore": [
"tests/*",
"*.test.js",
"*.spec.js"
]
},
"author": "Davide Rovelli",
"license": "ISC",
"dependencies": {
"bindings": "~1.2.1",
"node-addon-api": "^1.0.0",
"@babel/cli": "^7.12.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"helmet": "^3.21.1",
"jest": "^27.2.5",
"jsonwebtoken": "^8.5.1",
"jssha": "^3.2.0",
"mariadb": "^2.5.6",
"node-fetch": "^2.6.0",
"npm-run-all": "^4.1.5",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"sequelize": "^6.17.0",
"shelljs": "^0.8.4",
"ssh2": "^1.5.0",
"tmp": "^0.2.1",
"yaml": "^1.10.2"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
"@babel/preset-env": "^7.13.10",
"babel-jest": "^27.2.5",
"cross-env": "^7.0.3",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
}
}