This repository has been archived by the owner on Jan 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
92 lines (92 loc) · 2.81 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "streamplace-root-pkg",
"version": "0.2.0",
"description": "An open-source toolkit for compositing live video streams in the cloud",
"main": "package.json",
"jest": {
"bail": true,
"testPathIgnorePatterns": [
"/node_modules/",
"/packages/"
],
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add",
"eslint"
],
"*.css": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-preset-streamplace": "0.0.3",
"depcheck": "^0.6.9",
"dot-object": "^1.5.4",
"eslint": "^4.11.0",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.1.0",
"get-stdin": "^5.0.1",
"husky": "^0.13.3",
"inquirer": "^3.0.4",
"jest": "^20.0.4",
"js-yaml": "^3.8.1",
"kube-for-mac": "^0.1.0",
"lerna": "^2.5.1",
"lint-staged": "^4.0.0",
"mkdirp": "^0.5.1",
"nodemon": "^1.11.0",
"npm-run-all": "^4.1.2",
"opn": "^5.3.0",
"opn-cli": "^3.1.0",
"prettier": "^1.12.1",
"superagent": "^3.5.0",
"swagger-client": "^2.1.32",
"temp": "^0.8.3",
"tmp-promise": "^1.0.3",
"wheelhouse": "next",
"winston": "^2.3.1",
"yargs": "^11.0.0"
},
"scripts": {
"ci:build-app": "run/ci-build-app.sh",
"ci": "run-s env:next docker:ci",
"client": "lerna exec --concurrency=999 --no-sort --include-filtered-dependencies --scope sp-native --scope sp-frontend --scope sp-app npm run start",
"docker:ci": "run/generate-dockerfile.js",
"docker:dev": "run/generate-dockerfile.js --dev=true",
"env:dev": "babel-node packages/sp-configuration/src/build-env-override.js values-dev.yaml values.local.yaml",
"env:next": "babel-node packages/sp-configuration/src/build-env-override.js values-next.yaml values.local.yaml",
"helm:dev": "run/helm-dev.sh",
"helm:lint": "run/every-package.sh run/helm-lint.sh --concurrency=999",
"lint": "run/lint.sh",
"precommit": "CI=true lint-staged && run/pre-commit.sh",
"postinstall": "touch values.local.yaml",
"server:apply": "run/generate-dockerfile.js --dev --deploy",
"server:logs": "opn 'http://localhost:5601/app/logtrail#/?q=kubernetes.namespace_name:%20default&h=All&t=Now&i=logstash-*&_g=()'",
"server": "run-s docker:dev helm:dev",
"test": "CI=true run/every-package.sh npm run test --concurrency=999"
},
"repository": {
"type": "git",
"url": "https://github.com/streamplace/streamplace"
},
"author": "Streamplace",
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"private": true,
"babel": {
"presets": [
"streamplace"
]
}
}