-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.29 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.29 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
{
"name": "simplesteps-monorepo",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/DevNamedZed/simplesteps"
},
"workspaces": [
"packages/core",
"packages/cdk",
"packages/local"
],
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"clean:build": "rm -rf build",
"test": "jest",
"test:ci": "jest --ci --coverage --reporters=default --reporters=jest-junit",
"test:coverage": "jest --coverage",
"build:release": "npm run clean:build && npm run build && npm run test:ci",
"typecheck:examples": "tsc --noEmit -p examples/showcase/tsconfig.json && tsc --noEmit -p examples/aws-cdk-comparison/tsconfig.json && tsc --noEmit -p examples/starters/cdk/tsconfig.json",
"examples": "npx tsx examples/showcase/run-examples.ts",
"examples:cdk": "npx tsx examples/aws-cdk-comparison/run-examples.ts",
"examples:all": "npm run examples && npm run examples:cdk",
"playground": "npm run dev --prefix playground",
"codegen": "npx tsx tools/codegen/generate.ts",
"prepare": "husky"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.11.30",
"husky": "^9.1.7",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"jest-junit": "^16.0.0",
"typescript": "^5.9.3"
}
}