-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.6 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
{
"name": "tidal-embed-player",
"version": "0.0.1",
"packageManager": "pnpm@10.23.0",
"description": "TIDAL Embed Player with Serverless AWS Lambda rendering",
"type": "module",
"engine": {
"node": "20.14.0"
},
"browserslist": [
"defaults",
"not op_mini all"
],
"scripts": {
"start": "run-s build prod:start:server",
"dev": "run-s build dev:start:server",
"prod:start:server": "LAMBDA_TASK_ROOT=true AWS_EXECUTION_ENV=true AWS_ENV=fakelamda pnpm run start:server",
"dev:start:server": "NODE_ENV=development LAMBDA_TASK_ROOT=false AWS_EXECUTION_ENV=false pnpm run start:server",
"start:server": "node --env-file=.env src/server/local/index.js",
"lint:css": "stylelint \"src/client/**/*.css\"",
"lint:js": "eslint src/server/**/*.js --quiet && eslint src/client/**/*.js --quiet",
"typecheck": "tsc",
"esbuild:client": "node --env-file=.env scripts/esbuild-client.js",
"esbuild:server": "node --env-file=.env scripts/esbuild-server.js",
"hasher": "node scripts/hasher.js",
"build": "NODE_ENV=production run-s esbuild:client hasher esbuild:server",
"test": "web-test-runner src/**/*.test.js --node-resolve",
"cypress:run": "npx cypress run --browser chrome --headless",
"cypress:open": "cypress open",
"gh-action:build": "node scripts/esbuild-client.js && node scripts/hasher.js && node scripts/esbuild-server.js",
"gh-action:start": "LAMBDA_TASK_ROOT=true AWS_EXECUTION_ENV=true AWS_ENV=fakelamda node src/server/local/index.js"
},
"devDependencies": {
"@tidal-music/common": "0.2.0",
"@tidal-music/event-producer": "2.4.0",
"@tidal-music/player": "0.11.0",
"@tidal-music/player-web-components": "0.2.1",
"@types/mocha": "^10.0.10",
"@types/node": "^24.0.0",
"@web/test-runner": "^0.20.0",
"@web/test-runner-playwright": "^0.11.0",
"chai": "^6.0.0",
"cypress": "^15.0.0",
"esbuild": "^0.27.0",
"esbuild-plugin-clean": "^1.0.1",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-postcss": "^0.0.4",
"eslint": "9.39.1",
"eslint-config-tidal": "4.0.0",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-cypress": "^5.0.0",
"express": "^5.0.0",
"hasha": "^7.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"npm-run-all2": "^8.0.0",
"platform": "1.3.6",
"playwright": "1.56.1",
"postcss": "^8.4.49",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^10.0.0",
"postcss-reporter": "^7.1.0",
"screenfull": "^6.0.2",
"stylelint": "^16.13.0",
"stylelint-config-standard": "^39.0.0",
"svgo": "^4.0.0",
"typescript": "^5.7.3"
}
}