-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.33 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.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
{
"name": "@aligent/appbuilder-typescript-template",
"version": "0.0.1",
"private": true,
"type": "commonjs",
"dependencies": {
"@adobe/aio-lib-telemetry": "^1.1.3",
"@adobe/aio-sdk": "^6.0.0",
"@adobe/exc-app": "^1.4.13",
"@adobe/react-spectrum": "^3.46.1",
"cloudevents": "^9.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router": "^7.13.0",
"uuid": "^8.0.0"
},
"devDependencies": {
"@aligent/ts-code-standards": "^4.2.0",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.27.0",
"@types/node": "^22.14.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.2",
"@types/uuid": "^10.0.0",
"babel-loader": "^10.0.0",
"concurrently": "^9.1.2",
"jest": "^29.7.0",
"msw": "^2.7.4",
"ts-jest": "^29.3.2",
"ts-loader": "^9.5.2",
"type-fest": "^4.39.1",
"typescript": "^5.8.3"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"check-types": "npm run check-types:actions && npm run check-types:web && npm run check-types:tests",
"check-types:actions": "tsc --noEmit --project src/actions/tsconfig.json",
"check-types:web": "tsc --noEmit --project src/web/tsconfig.json",
"check-types:tests": "tsc --noEmit --project tests/tsconfig.json"
},
"engines": {
"node": ">=18"
}
}