-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 1.9 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
{
"name": "create-bod-app",
"private": true,
"packageManager": "[email protected]",
"description": "Boilerplate CLI App",
"author": "sabertazimi <[email protected]>",
"license": "MIT",
"homepage": "https://sabertazimi.github.io/bod",
"repository": {
"type": "git",
"url": "git+https://github.com/sabertazimi/bod.git"
},
"bugs": {
"url": "https://github.com/sabertazimi/bod/issues"
},
"keywords": [
"bod",
"bod-cli",
"boilerplate",
"cli",
"create-react-app",
"react",
"react-scripts",
"starter",
"starter-kit",
"template",
"typescript"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"badge": "ts-node scripts/badge.ts",
"build": "pnpm -r run build",
"build:docs": "pnpm --filter bod-website build:docs",
"canary": "ts-node scripts/canary.ts",
"format": "pnpm -r run format",
"lint": "pnpm -r run lint",
"lint:fix": "pnpm -r run lint:fix",
"release": "ts-node scripts/release.ts --push",
"start": "pnpm start:template",
"start:all": "pnpm -r run start",
"start:bod": "pnpm --filter bod start",
"start:template": "pnpm --filter cra-template-bod start",
"test": "jest --watch",
"test:all": "pnpm -r run test && jest"
},
"devDependencies": {
"@dg-scripts/eslint-config": "workspace:^",
"@dg-scripts/stylelint-config": "workspace:^",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.4",
"@types/semver": "^7.5.8",
"chalk": "^4.1.2",
"chokidar": "^4.0.3",
"ci-info": "^4.1.0",
"concurrently": "^9.1.2",
"consola": "^3.4.0",
"dotenv": "^16.4.7",
"eslint": "^9.20.1",
"jest": "^29.7.0",
"lerna": "^8.1.9",
"prettier": "^3.5.1",
"semver": "^7.7.1",
"stylelint": "^16.14.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"undici": "^7.3.0",
"verdaccio": "^6.0.5"
}
}