-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
92 lines (92 loc) · 3.32 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@adobe/uix-sdk-monorepo",
"private": true,
"version": "1.0.0",
"description": "Monorepo for @adobe/uix-sdk development",
"author": "Adobe, Inc,",
"scripts": {
"any": "npm run --workspaces --if-present",
"build": "npm run -s build:development",
"build:development": "node scripts/bundler.mjs development",
"build:production": "node scripts/bundler.mjs production",
"clean": "del {dist,*.tsbuildinfo,docs/temp,.parcel-cache,node_modules/.cache} {packages,examples}/*/{dist,*.tsbuildinfo,node_modules/.cache,.parcel-cache,node_modules/.vite} packages/*/src/**/*.{d.ts,d.ts.map,js,js.map} && npm run -s any -- -s clean",
"declarations:build": "tsc --build",
"declarations:watch": "tsc --build tsconfig.json --watch",
"demo": "npm run build:production -- --esm && npm run any example:build && node scripts/multi-server.mjs production",
"dev": "node scripts/multi-server.mjs development",
"docs": "node scripts/generate-docs.mjs",
"docs:watch": "node scripts/generate-docs.mjs --watch",
"format": "run-p format:*",
"format:code": "prettier --write --loglevel warn packages/*/src",
"format:pkg": "fixpack --quiet; npx --ws -p fixpack -c 'fixpack --quiet || true'",
"lint": "run-p lint:*",
"lint:format": "prettier --check packages/*/src",
"lint:pkg": "fixpack --dryRun; npx --ws -p fixpack -c 'fixpack --dryRun --quiet'",
"prepare": "husky install",
"report": "run-s clean report:*",
"report:api": "node scripts/generate-docs.mjs --no-markdown",
"report:size": "node scripts/bundler.mjs report",
"test": "run-s lint test:unit test:subtests",
"test:subtests": "npm run any test",
"test:unit": "jest",
"test:unit:watch": "jest --watch"
},
"devDependencies": {
"@adobe/exc-app": "^1.4.0",
"@adobe/react-spectrum": "^3.20.0",
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@microsoft/api-documenter": "^7.21.5",
"@microsoft/api-extractor": "^7.34.4",
"@testing-library/dom": "^8.19.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.2.2",
"@types/react": "^17.0.47",
"@types/react-dom": "^17",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"@vitejs/plugin-react": "^2.0.0",
"chalk": "^5.0.1",
"chokidar": "^3.5.3",
"cli-highlight": "^2.1.11",
"concurrently": "^7.2.2",
"cors": "^2.8.5",
"crlf": "^1.1.1",
"del-cli": "^5.0.0",
"eslint": "^8.21.0",
"eventemitter3": "^4.0.7",
"express": "^4.18.2",
"express-http-proxy": "^1.6.3",
"figures": "^4.0.1",
"fixpack": "^4.0.0",
"humanize-duration": "^3.27.2",
"husky": "^8.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.7.0",
"prettier": "^2.6.2",
"react": "^17.0.2",
"react-dom": "^17",
"react-test-renderer": "^17.0.2",
"semver": "^7.3.7",
"simple-code-frame": "^1.2.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsup": "^6.6.3",
"typedoc": "^0.23.15",
"typescript": "~4.8.4",
"vite": "^3.2.3",
"yalc": "^1.0.0-pre.53",
"zalgo-js": "^1.0.0"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/adobe/uix-sdk.git"
},
"workspaces": [
"packages/*",
"examples/*"
]
}