Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/gitpod-db/package.json
2492 views
1
{
2
"name": "@gitpod/gitpod-db",
3
"license": "AGPL-3.0",
4
"version": "0.1.5",
5
"scripts": {
6
"build": "npx tsc",
7
"build:clean": "yarn clean && yarn lint && yarn build",
8
"lint": "yarn eslint src/*.ts src/**/*.ts",
9
"lint:fix": "yarn eslint src/*.ts src/**/*.ts --fix",
10
"rebuild": "yarn build:clean",
11
"build:watch": "watch 'yarn build' .",
12
"test": "yarn db-test",
13
"watch": "leeway exec --package .:lib --transitive-dependencies --filter-type yarn --components --parallel -- tsc -w --preserveWatchOutput",
14
"db-test": "r(){ . $(leeway run components/gitpod-db:db-test-env); yarn db-test-run; };r",
15
"db-test-run": "mocha '**/*.spec.db.ts' --exclude './node_modules/**' --exit",
16
"wait-for-db": "node ./lib/wait-for-db.js",
17
"typeorm": "typeorm -f lib/typeorm/ormconfig",
18
"migrate-migrations": "node ./lib/migrate-migrations.js",
19
"clean": "yarn run rimraf lib",
20
"clean:node": "yarn run rimraf node_modules",
21
"purge": "yarn clean && yarn clean:node && yarn run rimraf yarn.lock"
22
},
23
"mocha": {
24
"require": [
25
"ts-node/register",
26
"reflect-metadata/Reflect",
27
"source-map-support/register"
28
],
29
"extensions": [
30
"ts"
31
],
32
"exit": true
33
},
34
"files": [
35
"/lib"
36
],
37
"dependencies": {
38
"@gitpod/gitpod-protocol": "0.1.5",
39
"@jmondi/oauth2-server": "^2.6.1",
40
"ioredis": "^5.3.2",
41
"ioredis-mock": "^8.7.0",
42
"mysql": "^2.18.1",
43
"prom-client": "^14.2.0",
44
"reflect-metadata": "^0.1.13",
45
"slugify": "^1.6.5",
46
"ts-deepmerge": "^7.0.2",
47
"the-big-username-blacklist": "^1.5.2",
48
"typeorm": "0.2.38"
49
},
50
"devDependencies": {
51
"@testdeck/mocha": "^0.3.3",
52
"@types/chai": "^4.2.2",
53
"@types/mocha": "^10.0.1",
54
"@types/mysql": "^2.15.0",
55
"@types/uuid": "^8.3.1",
56
"@typescript-eslint/eslint-plugin": "^5.5.0",
57
"@typescript-eslint/parser": "^5.5.0",
58
"chai": "^4.2.0",
59
"eslint": "^8.47.0",
60
"mocha": "^10.2.0",
61
"rimraf": "^2.6.1",
62
"ts-node": "^10.4.0",
63
"typescript": "~4.4.2"
64
}
65
}
66
67