-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.26 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
{
"name": "ping-sdk-samples",
"version": "1.0.0",
"description": "JavaScript sample apps",
"main": "\"\"",
"author": "",
"license": "ISC",
"workspaces": [
"central-login-oidc",
"embedded-login",
"reactjs-todo",
"angular-todo",
"todo-api"
],
"scripts": {
"todo-api": "npm start --workspace todo-api",
"angular-todo": "npm start --workspace angular-todo",
"reactjs-todo": "npm start --workspace reactjs-todo",
"start:central-login-oidc": "npm start --workspace central-login-oidc",
"start:embedded-login": "npm start --workspace embedded-login",
"start:angular-todo": "npm-run-all --parallel todo-api angular-todo",
"start:reactjs-todo": "npm-run-all --parallel todo-api reactjs-todo",
"lint": "npm run lint --workspaces --if-present",
"prepare": "husky install"
},
"devDependencies": {
"@playwright/test": "^1.41.2",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"typescript": "^5.2.2"
},
"lint-staged": {
"JS/*.{js,jsx,ts,tsx, .cjs}": "prettier --write",
"JS/*.{html,json}": "prettier --write"
}
}