forked from elasticpath/composable-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.27 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
{
"name": "@elasticpath/composable-frontend",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"build:e2e": "turbo run build --filter='./packages/*' && turbo run build:e2e --filter='./examples/*'",
"generate": "turbo run generate --parallel --filter=!@elasticpath/composable-common",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter='./packages/*' && changeset publish",
"deploy": "turbo run deploy",
"test": "turbo run test",
"test:packages": "turbo run test --filter='./packages/*'",
"test:watch": "turbo run test:watch",
"start:e2e": "turbo run start:e2e --filter='./examples/simple'",
"test:e2e": "NODE_ENV=test turbo run test:e2e --filter='./examples/simple'",
"build:cli": "turbo run build --filter=composable-cli...",
"build:packages": "turbo run build --filter='./packages/*'",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "pnpm publish -r && changeset tag",
"examples": "turbo run build --filter=composable-cli... && pnpm run scaffold:local",
"scaffold:local": "pnpm ts-node ./scripts/generate-examples.ts"
},
"devDependencies": {
"@angular-devkit/core": "^16.2.7",
"@changesets/cli": "^2.24.1",
"@playwright/test": "^1.28.1",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/jest": "^29.1.2",
"@types/node": "18.7.3",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"app-root-path": "^3.1.0",
"chalk": "^4.1.2",
"concurrently": "^7.6.0",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.1.0",
"eslint-config-custom": "*",
"fs-extra": "^10.1.0",
"glob": "^7.2.3",
"globby": "^11.1.0",
"jest-extended": "^3.1.0",
"json-schema-to-typescript": "^11.0.1",
"kebab-case": "^1.0.2",
"mkdirp": "2.1.5",
"prettier": "latest",
"quicktype-core": "^6.1.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"turbo": "latest"
},
"engines": {
"node": ">=18.17.0"
},
"packageManager": "[email protected]",
"volta": {
"node": "18.18.2"
}
}