-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
37 lines (37 loc) · 1.41 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
{
"name": "botium-box",
"version": "1.0.0",
"description": "Botium Box Community Edition",
"engines": {
"node": ">=8.3"
},
"bin": {
"botium-box-cli": "./bin/botium-box-cli.js"
},
"scripts": {
"eslint": "eslint \"./src/**/*.js\" \"./bin/**/*.js\"",
"start:agent": "cd agent && npm run run:dist",
"start:server": "cd server && npm run prisma-deploy && npm run prisma-seed && npm run run:dist",
"start": "npm-run-all -p start:agent start:server",
"prepare:agent": "cd agent && npm install --no-optional --production",
"prepare:server": "cd server && npm install --no-optional --production",
"postinstall": "npm-run-all prepare:agent prepare:server",
"start-standalone:backend": "cd server/database && cross-env docker-compose up",
"start-standalone:frontend": "./wait-for-it.sh -s 127.0.0.1:4466 -- cross-env DEBUG=botium* PRISMA_ENDPOINT=http://127.0.0.1:4466/box/standalone PRISMA_SECRET=mysecret123 JWT_SECRET=jwtsecret123 BOTIUMBOX_QUEUE_REDISURL=redis://127.0.0.1:6379 npm start"
},
"dependencies": {
"cross-env": "^5.2.0",
"debug": "^4.1.1",
"npm-run-all": "^4.1.3",
"opn": "^5.4.0",
"yargs": "^12.0.5"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1"
}
}