-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
34 lines (34 loc) · 1.07 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
{
"name": "spatial-keyboard-navigation",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently \"yarn workspace spatial-keyboard-navigation dev\" \"yarn workspace spatial-keyboard-navigation-react dev\" \"yarn workspace playground dev\"",
"prebuild": "yarn run clean",
"build": "yarn tsc --build packages",
"clean": "yarn lerna run clean --concurrency 4",
"lint": "yarn lerna run lint --stream --concurrency 4",
"test": "yarn lerna run test --stream",
"format": "prettier --write ."
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@commitlint/config-lerna-scopes": "^12.1.1",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"commitlint": "^12.1.1",
"concurrently": "^6.2.1",
"eslint": "^7.23.0",
"husky": "^3.1.0",
"lerna": "^4.0.0",
"lerna-changelog": "^1.0.1",
"prettier": "^2.4.1",
"rimraf": "^3.0.2"
}
}