-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "nutrient-examples",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@playwright/test": "^1.56.1",
"@types/node": "^22.10.7",
"concurrently": "^9.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"typescript": "^5.9.3",
"webpack-dev-server": "^5.2.2"
},
"scripts": {
"install-dependencies": "./scripts/install-dependencies.sh",
"format": "biome check --unsafe --write .",
"prepare": "husky",
"e2e-tests": "./scripts/e2e-tests.sh",
"lint-staged": "lint-staged",
"test": "playwright test",
"audit-fix": "./scripts/audit-dependencies.sh",
"update-nutrient-version": "./scripts/update-nutrient-in-examples.sh",
"check-biome-version": "./scripts/check-biome-version.sh"
},
"lint-staged": {
"*": ["biome check --write --no-errors-on-unmatched"]
},
"pnpm": {
"overrides": {
"ajv": "^8.18.0",
"http-proxy-middleware": "^2.0.9",
"on-headers": "^1.1.0",
"node-forge": "^1.3.2",
"qs": "^6.14.2"
},
"onlyBuiltDependencies": ["@biomejs/biome"]
}
}