-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.08 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
{
"name": "@eyevinn/fast",
"version": "1.9.2",
"description": "Open Source Sustainable FAST Channel Engine",
"main": "dist/server.js",
"scripts": {
"build": "tsc --project ./",
"build:ui": "parcel build src/ui/index.html",
"build:lp": "parcel build --target website",
"build:docs": "mkdocs build",
"version:rc": "npm version prerelease --preid=rc",
"postversion": "git push && git push --tags",
"dev": "NODE_ENV=development tsc-watch --noClear -p ./tsconfig.json --onSuccess \"node --inspect ./dist/server.js\"",
"dev:ui": "parcel -p 1234 --no-cache src/ui/index.html",
"dev:lp": "parcel -p 1234 --target website --no-cache",
"dev:docs": "mkdocs serve -a 127.0.0.1:2345",
"server": "node ./dist/server.js",
"start": "npm run server",
"lint": "eslint .",
"pretty": "prettier --check --ignore-unknown .",
"test": "jest"
},
"targets": {
"main": false,
"default": {
"distDir": "./dist/ui",
"publicUrl": "/"
},
"website": {
"distDir": "./dist-website",
"publicUrl": "/",
"source": "website/index.html"
}
},
"author": "Eyevinn Technology <work@eyevinn.se>",
"contributors": [
"Jonas Birmé <jonas.birme@eyevinn.se> (Eyevinn Technology AB)"
],
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-prettier": "^4.2.1",
"fastify": "^4.17.0",
"jest": "^29.7.0",
"jest-environment-node-single-context": "^29.1.0",
"jest-fetch-mock": "^3.0.3",
"parcel": "^2.8.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"@eyevinn/schedule-service-adapter": "^0.4.1",
"eyevinn-channel-engine": "4.3.11",
"finalhandler": "^1.2.0",
"node-fetch": "^2.6.5",
"serve-static": "^1.15.0",
"uuidv4": "^6.2.13"
}
}