forked from dilanx/craco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.05 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
{
"name": "craco",
"private": true,
"license": "Apache-2.0",
"keywords": [
"react",
"create-react-app",
"cra"
],
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "npm run lint:ts && npm run lint:es",
"lint:ts": "tsc --noEmit",
"lint:es": "eslint --ext .ts",
"tslint": "tsc --noEmit",
"bootstrap": "lerna bootstrap",
"build": "lerna exec npm run build",
"build:types": "npm run build -w @craco/types",
"build:craco": "npm run build -w @craco/craco",
"publish": "lerna publish --force-publish --no-private",
"publish:alpha": "lerna publish --dist-tag alpha --no-private",
"pack": "lerna exec npm pack",
"refresh": "npm run build && npm run bootstrap",
"refresh:types": "npm run build:types && npm run bootstrap"
},
"prettier": "@dilanx/config/prettier",
"devDependencies": {
"@dilanx/config": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"lerna": "^5.5.4",
"prettier": "2.7.1"
}
}