-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.57 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.57 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "trainscoding",
"version": "0.0.1",
"description": "Cloud based platform for video management.",
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"build": "run-p build:all",
"build:all": "run-p clean && run-s build:lerna",
"build:service": "run-p clean && run-s build:lerna:scope",
"build:lerna": "lerna run build",
"build:lerna:scope": "lerna run --scope $npm_config_service build",
"prettier": "lerna run prettier",
"prettier:fix": "lerna run prettier:fix",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"clean": "lerna run --parallel clean",
"changed": "lerna changed",
"publish": "lerna publish",
"publish:ci": "lerna publish --conventional-commits --yes",
"postinstall": "npm run bootstrap",
"start": "run-p build && docker-compose up",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MasterCloudApps-Projects/trainscoding.git"
},
"husky": {
"hooks": {
"pre-commit": "run-p lint && run-p prettier"
}
},
"prettier": "@trainscoding/prettier-config",
"keywords": [
"Nodejs",
"Monorepo",
"Video",
"Web",
"Trainscoding",
"cloud"
],
"workspaces": {
"packages": [
"packages/*"
],
"services": [
"services/*"
]
},
"author": "Javier Garcia Gonzalez <javier@garciagon.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/MasterCloudApps-Projects/trainscoding/issues"
},
"homepage": "https://github.com/MasterCloudApps-Projects/trainscoding#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@trainscoding/eslint-config": "^0.1.0",
"@trainscoding/prettier-config": "^0.1.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/node": "^16.4.13",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"babel-jest": "^27.0.6",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"jest": "^27.1.0",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier-config-standard": "^4.0.0",
"ts-jest": "^27.0.5"
}
}