-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.31 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
{
"name": "opal",
"version": "1.0.0",
"description": "On-premises analytics tool for MTV",
"main": "./dist/src/server.js",
"scripts": {
"build": "tsc --project ./tsconfig.json",
"build:dev": "tsc -w --project ./tsconfig.json",
"start": "NODE_TLS_REJECT_UNAUTHORIZED='0' node dist/src/server.js",
"start:dev": "NODE_TLS_REJECT_UNAUTHORIZED='0' DEV=1 nodemon --watch dist/src dist/src/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/konveyor/opal.git"
},
"type": "module",
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/konveyor/opal/issues"
},
"homepage": "https://github.com/konveyor/opal#readme",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"typescript": "^4.1.4"
},
"dependencies": {
"@kubernetes/client-node": "^0.14.0",
"apollo-datasource-rest": "^0.9.7",
"apollo-server-express": "^2.19.2",
"express": "^4.17.1",
"graphql": "^14.7.0"
}
}