forked from resonatecoop/stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.57 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
{
"name": "stream2own",
"version": "0.0.0",
"private": true,
"scripts": {
"audit": "npm run audit:npm --workspaces --if-present",
"dev": "npm-run-all build:ts --parallel dev:ts dev:beta:assets \"dev:beta:jalla -- {@}\" --",
"dev:beta:assets": "npm run dev:assets --workspace beta-player",
"dev:beta:jalla": "npm run dev:jalla --workspace beta-player --",
"dev:embed": "npm run dev --workspace embed --",
"dev:ts": "tsc -b --watch",
"test": "npm run test --workspaces --if-present",
"start": "npm run start --workspace beta-player",
"start:embed": "npm run start --workspace embed",
"build": "run-s build:beta",
"build:beta": "npm run build:ts && npm run build --workspace beta-player",
"build:embed": "npm run build:ts && npm run build --workspace embed",
"build:ts": "tsc -b --force"
},
"workspaces": [
"packages/*",
"embed",
"beta"
],
"dependencies": {
"@babel/core": "^7.15.8",
"@babel/node": "^7.15.8",
"@tap-format/spec": "^0.2.0",
"babel-plugin-add-module-exports": "^1.0.0",
"dotenv-safe": "^8.2.0",
"hstream": "^1.2.0",
"jalla": "1.0.0-38",
"koa-mount": "^4.0.0",
"postcss-custom-media": "^7.0.7",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.1.2",
"postcss-preset-env": "^6.6.0",
"postcss-reporter": "^6.0.1",
"tape": "^5.3.1",
"tape-run": "^9.0.0"
},
"devDependencies": {
"dependency-check": "^5.0.0-4",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"npm-run-all": "^4.1.5",
"typescript": "~4.4.4"
}
}