-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.29 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
{
"name": "root",
"private": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-compat": "^4.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"eslint-plugin-sort-export-all": "^1.2.1",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"eslint-plugin-unused-imports": "^2.0.0",
"lerna": "^4.0.0",
"prettier": "^2.5.1"
},
"version": "1.0.0",
"description": "twr website and monorepo",
"author": "Mike Thurgood [email protected]",
"license": "unlicensed",
"scripts": {
"bootstrap": "yarn install; lerna bootstrap;",
"start": "lerna run start --parallel",
"start:app": "node -r ./dotenv.config.js node_modules/.bin/lerna run --scope @twr/app --stream dev",
"build:app": "node -r ./dotenv.config.js node_modules/.bin/lerna run --scope @twr/app --stream build",
"run:build:app": "lerna run start --scope @twr/app",
"lint": "eslint 'packages/**/src/**/*.{js,ts,tsx}' --fix --quiet"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"workspaces": [
"packages/*"
],
"dependencies": {
"commitizen": "^4.2.4"
}
}