forked from cinepro-org/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.21 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
{
"name": "@cinepro/core",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "npm run build && node dist/server.js",
"test": "node scripts/run-tests.mjs && node --test test/*.test.mjs",
"test:provider": "tsx --test",
"test:catalog": "node --test test/provider-catalog.test.mjs",
"catalog:validate": "node scripts/validate-provider-catalog.mjs",
"catalog:report": "node scripts/generate-provider-report.mjs",
"catalog:report:check": "node scripts/generate-provider-report.mjs --check",
"format": "prettier --write src",
"clean": "npx rimraf dist"
},
"dependencies": {
"@omss/framework": "git+https://github.com/Jules-Astier/framework.git#cd2a05abb3605a4e6363124183db5bfbdb42320f",
"cheerio": "^1.2.0",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"playwright-core": "^1.60.0"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.7.4",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}