forked from sabertazimi/bod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.99 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.99 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
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
{
"name": "create-bod-app",
"private": true,
"packageManager": "yarn@3.4.1",
"description": "Boilerplate CLI App",
"workspaces": [
"packages/*",
"website"
],
"author": "sabertazimi <sabertazimi@gmail.com>",
"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": ">=14.0.0"
},
"scripts": {
"badge": "ts-node scripts/badge.ts",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"build:docs": "yarn workspace bod-website build:docs",
"canary": "ts-node scripts/canary.ts",
"clean": "lerna clean --yes",
"e2e": "ts-node scripts/e2e.ts",
"format": "lerna run format",
"lint": "lerna run lint",
"release": "ts-node scripts/release.ts --push",
"start": "yarn start:template",
"start:all": "lerna run start",
"start:bod": "yarn workspace bod start",
"start:template": "yarn workspace cra-template-bod start",
"test": "jest --watch",
"test:all": "lerna run test && jest"
},
"devDependencies": {
"@dg-scripts/eslint-config": "*",
"@dg-scripts/stylelint-config": "*",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.6",
"@types/semver": "^7.3.13",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"ci-info": "^3.8.0",
"concurrently": "^7.6.0",
"consola": "^2.15.3",
"dotenv": "^16.0.3",
"eslint": "^8.35.0",
"jest": "^29.4.3",
"lerna": "^6.5.1",
"prettier": "^2.8.4",
"semver": "^7.3.8",
"stylelint": "^15.2.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"undici": "^5.20.0",
"verdaccio": "^5.22.0"
}
}