-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.33 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
{
"name": "interface-systems-lab",
"version": "0.1.0",
"private": true,
"author": "Sanderson Technology Enterprises",
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"predev": "npm run assets:build",
"dev": "next dev",
"prebuild": "npm run assets:build",
"build": "next build",
"prebuild:pages": "npm run assets:build",
"build:pages": "cross-env PAGES_BASE_PATH=/interface-systems-lab next build",
"start": "next start",
"preview:prepare": "node scripts/prepare-preview.mjs",
"preview:serve": "node scripts/serve-preview.mjs .preview 4173",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check --ignore-unknown .",
"lint": "eslint .",
"test:unit": "node --import tsx --test tests/*.test.ts tests/unit/*.test.mjs",
"fixtures:build": "node scripts/build-fixtures.mjs",
"assets:build": "node scripts/build-icon-assets.mjs && npm run fixtures:build",
"assets:brand": "node scripts/build-brand-assets.mjs",
"test:fixtures": "node --test tests/fixtures.test.mjs tests/icon-assets.test.mjs",
"test:brand": "node --test tests/brand-assets.test.mjs",
"test:export": "node --test tests/export.test.mjs",
"test:browser": "playwright test",
"test:dev-hydration": "node scripts/run-dev-hydration.mjs",
"verify:export": "node scripts/verify-export.mjs",
"typecheck": "tsc --noEmit",
"quality": "npm run format:check && npm run lint && npm run typecheck && npm run test:unit && npm run test:fixtures && npm run test:brand && npm run test:dev-hydration && npm run build:pages && npm run test:export && npm run test:browser"
},
"dependencies": {
"interactive-surface-css": "1.6.0",
"layout-style-css": "3.0.1",
"next": "16.2.12",
"react": "19.2.6",
"react-dom": "19.2.6",
"ui-style-kit-css": "2.2.0",
"ui-style-kit-icons": "1.0.0"
},
"overrides": {
"postcss": "8.5.25"
},
"devDependencies": {
"@axe-core/playwright": "4.12.1",
"@playwright/test": "1.61.1",
"@types/node": "22.19.19",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"cross-env": "10.1.0",
"eslint": "9.39.5",
"eslint-config-next": "16.2.12",
"prettier": "3.9.5",
"sharp": "0.34.5",
"tsx": "4.23.1",
"typescript": "5.9.3"
},
"type": "module",
"displayName": "Interface Systems Lab"
}