-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.1 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
{
"version": "0.0.1",
"repository": "https://github.com/CodersCrew/coderskit.git",
"author": "CodersCrew",
"license": "MIT",
"private": true,
"workspaces": [
"packages/**/*"
],
"scripts": {
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"type-check": "lerna run type-check",
"prettier": "lerna run prettier",
"prettier:fix": "lerna run prettier:fix",
"check-all": "yarn type-check && yarn lint && yarn prettier",
"dev:coderskit": "lerna run dev --scope=coderskit --stream",
"build:coderskit": "lerna run build --scope=coderskit",
"dev:docs": "lerna run dev --scope=docs --stream",
"build:docs": "yarn build:coderskit && lerna run build --scope=docs"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"deepmerge": "^4.0.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"lerna": "^3.16.4",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"typescript": "^3.5.3"
}
}