forked from mercedes-benz/DnA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.96 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
{
"private": true,
"name": "dna-mbc",
"version": "2.0.7",
"main": "index.js",
"workspaces": [
"packages/*"
],
"devDependencies": {
"concurrently": "^6.2.0",
"husky": ">=6",
"lint-staged": ">=10",
"yarn": "^1.22.10"
},
"scripts": {
"start:web+backend": "concurrently \"yarn start:backend\" \"yarn start:airflow_backend\" \"yarn start:web\"",
"start:airflow_backend": "cd packages/airflow-backend && ./gradlew bootRun",
"start:web": "cd packages/frontend && yarn start",
"start:legacy": "cd packages/frontend && yarn start:legacy",
"start:backend": "cd packages/backend && ./gradlew bootRun",
"start:db+swagger": "cd deployment && docker-compose -f docker-compose-local-db+swagger.yml up -d",
"stop:db+swagger": "cd deployment && docker-compose -f docker-compose-local-db+swagger.yml down",
"build:web": "cd packages/frontend && yarn build:multi",
"test": "jest",
"prepare": "husky install",
"lint": "cd packages/frontend && eslint src/**/*.{ts,tsx} --ignore-pattern \"/**/*.{d.ts,js}\"",
"lint:fix": "yarn run lint --fix --max-warnings=0"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn run lint:fix",
"prettier --write"
],
"*.js": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Daimler/DnA.git"
},
"author": {
"name": "Daimler AG",
"url": "http://www.daimler.com/"
},
"contributors": [
"Agnel Praveen <[email protected]>",
"Benson Boon Aluri <[email protected]>",
"Debashis Gosh <[email protected]>",
"Kameshwara Rao <[email protected]>",
"Prince Kumar <[email protected]>",
"Rahul Kumar <[email protected]>",
"Sachin Sharma <[email protected]>",
"Sathishkumar <[email protected]>",
"Shubham Verma <[email protected]>",
"Vikas Madan <[email protected]>",
"Vinoth Kumar <[email protected]>"
],
"license": "MIT"
}