forked from scale8/scale8-tag-manager-and-analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.32 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
{
"name": "s8",
"version": "0.0.1",
"description": "Scale8 - Self Hosted Services",
"license": "AGPL-3.0",
"engines": {
"node": "12.16"
},
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "yarn lint --fix",
"install:all": "yarn install && yarn --cwd api/ install && yarn --cwd platforms/ install && yarn --cwd ui/ install && mvn -q -f edge/pom.xml clean install",
"build:all": "(cd router && exec ./build.sh) && (cd edge && exec ./build.sh) && (cd api && exec ./build.sh)",
"test:all": "yarn --cwd api/ test && yarn --cwd ui/ test && mvn -f edge/pom.xml test",
"run:all": "docker-compose up",
"stop:all": "docker-compose stop",
"start:mongodb": "docker run --name mongodb-dev -p 27017:27017 -d mongo:4.4",
"stop:mongodb": "docker stop mongodb-dev && docker rm mongodb-dev"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unused-imports": "^1.1.2",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"typescript": "^4.0.2"
},
"dependencies": {
}
}