-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.52 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
41
42
{
"name": "id-assertion-authz-node-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "yarn workspaces foreach -A run postinstall",
"dev:todo": "yarn workspace todo0 dev",
"dev:wiki": "yarn workspace wiki0 dev",
"auth:todo": "yarn workspace authorization-server server:todo",
"auth:wiki": "yarn workspace authorization-server server:wiki",
"start:todo0": "yarn workspace todo0 start",
"start:wiki0": "yarn workspace wiki0 start",
"build:todo": "yarn workspace todo0 build",
"build:wiki": "yarn workspace wiki0 build",
"resetdb": "yarn workspace wiki0 resetdb && yarn workspace todo0 resetdb",
"migratedb": "yarn workspace wiki0 migratedb && yarn workspace todo0 migratedb",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --cache",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.1"
},
"workspaces": [
"./packages/*"
],
"packageManager": "[email protected]"
}