-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1022 Bytes
/
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
{
"name": "create-cra-template",
"version": "1.0.21",
"private": true,
"workspaces": [
"packages/*",
"packages/templates/*"
],
"repository": "https://github.com/iamyoki/create-cra-template.git",
"scripts": {
"new-version": "lerna version --conventional-commits",
"build:cct": "lerna run build --scope create-cra-template",
"build:templates": "lerna exec cct --scope cra-template-*",
"build": "yarn build:cct && yarn build:templates",
"start:cct": "lerna run start --scope create-cra-template",
"start:templates": "chokidar './packages/templates' '!**/template/**' '!**/*.json' -c 'yarn run build:templates'",
"start:app": "./scripts/start-app.js",
"start": "./scripts/start.js"
},
"devDependencies": {
"chokidar-cli": "^2.1.0",
"concurrently": "^6.2.0",
"execa": "^5.0.1",
"fs-extra": "^10.0.0",
"globby": "^11.0.3",
"is-npm": "^5.0.0",
"lerna": "^4.0.0",
"typescript": "^4.3.2",
"inquirer": "^8.1.0"
},
"license": "MIT"
}