-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.96 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "authenticake",
"private": true,
"description": "Authentication and Authorization system with optional React components",
"scripts": {
"start": "lerna run preflight && run-p dev demos",
"dev": "lerna run start --stream --parallel --ignore @authenticake/demo*",
"demos": "lerna run start --stream --parallel --scope=@authenticake/demo*",
"build": "npm run build:common && lerna run --parallel --ignore {@authenticake/common,@authenticake/demo*} build",
"build:common": "lerna run --scope=@authenticake/common build",
"build:ci": "npm run build:common && lerna run --ignore {@authenticake/common,@authenticake/demo*} build",
"test": "lerna run test --parallel",
"test:watch": "lerna run test -- -- --watch",
"lint": "lerna run --parallel eslint",
"prettier": "lerna run --parallel prettier",
"prepublishOnly": "npm run build",
"release": "HUSKY_BYPASS=true lerna publish",
"clean": "lerna exec -- rimraf dist && lerna clean && rm -rf node_modules"
},
"license": "MIT",
"keywords": [
"authentication",
"authorization",
"jwt",
"sessions",
"oauth",
"react",
"typescript",
"keycloak"
],
"repository": {
"type": "git",
"url": "git+https://github.com/unleashit/authenticake.git"
},
"homepage": "https://github.com/unleashit/authenticake",
"bugs": {
"url": "https://github.com/unleashit/authenticake/issues"
},
"devDependencies": {
"lerna": "^5.1.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"webpack-cli": "^4.10.0"
},
"workspaces": {
"packages": [
"packages/common",
"packages/server",
"packages/connector",
"packages/client",
"demos/*"
]
},
"engines": {
"node": ">=12.0.0",
"npm": ">=7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "if -z \"$SKIP_TESTS\"; then prettier -l 'packages/**/*.{ts,tsx,js,jsx,json}' && eslint -c .eslintrc.js 'packages/**/*.{ts,tsx,js,jsx}' && npm test; fi"
}
}
}