forked from anaconda/odh-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.03 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
{
"name": "rhods-dashboard",
"version": "1.0.0",
"description": "RHODS dashboard.",
"author": "",
"license": "ISC",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/red-hat-data-services/odh-dashboard.git"
},
"homepage": "https://github.com/red-hat-data-services/odh-dashboard#readme",
"bugs": {
"url": "https://github.com/red-hat-data-services/odh-dashboard/issues"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "run-p -l build:*",
"build:backend": "cd ./backend && npm run build",
"build:frontend": "cd ./frontend && npm run build",
"dev": "run-p -l dev:*",
"dev:backend": "cd ./backend && npm run start:dev",
"dev:frontend": "cd ./frontend && npm run start:dev",
"format": "prettier --write \"backend/**/*.ts\" \"frontend/**/*.ts\" \"frontend/**/*.tsx\"",
"make": "make",
"make:build": "make build",
"make:deploy": "make deploy",
"make:login": "make login",
"make:undeploy": "make undeploy",
"make:push": "make push",
"postinstall": "run-p postinstall:*",
"postinstall:backend": "cd ./backend && npm install",
"postinstall:frontend": "cd ./frontend && npm install",
"start": "run-p start:*",
"start:backend": "cd ./backend && npm start",
"start:frontend": "echo \"...available at ./frontend/public\"",
"test": "run-s test:backend test:frontend",
"test:backend": "cd ./backend && npm run test",
"test:frontend": "cd ./frontend && npm run test",
"test:fix": "run-s test:fix-backend test:fix-frontend",
"test:fix-backend": "cd ./backend && npm run test:fix",
"test:fix-frontend": "cd ./frontend && npm run test:fix",
"test:integration": "jest --roots=./tests",
"test:integration-dev": "npm run build; jest --roots=./tests --watchAll",
"test:integration-fix": "npm run build; jest --roots=./tests --update-snapshot"
},
"dependencies": {
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1"
}
}