-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.8 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "pforte",
"version": "1.0.0",
"private": true,
"description": "authorization tools",
"repository": "git@github.com:pixelass/pforte.git",
"license": "AGPL-3.0-or-later",
"author": "Gregor Adams <greg@pixelass.com>",
"main": "index.js",
"workspaces": [
"examples/*",
"examples/express/client",
"packages/*"
],
"scripts": {
"prebuild": "yarn clean; yarn setup --build",
"build": "yarn prebuild && yarn dlx lerna run --ignore='example-*' build --parallel",
"clean": "yarn dlx lerna run clean",
"predev": "yarn clean; yarn setup --build",
"dev": "yarn predev && yarn dlx lerna run --ignore='example-*' watch --parallel",
"postinstall": "yarn dlx husky install; yarn setup",
"ncu:major": "yarn dlx npm-check-updates",
"ncu:minor": "yarn dlx npm-check-updates -t minor",
"ncu:patch": "yarn dlx npm-check-updates -t patch",
"prepublishOnly": "yarn build",
"prerelease": "yarn build",
"release": "yarn prerelease && lerna publish --conventional-commits",
"setup": "babel-node prepare/init.ts -x '.ts'",
"spj": "yarn dlx sort-package-json@1.48 package.json './packages/*/*/package.json' './examples/*/*/package.json'",
"example:express": "yarn dlx lerna run start --scope=example-express --stream",
"example:vercel": "yarn dlx lerna run start --scope=example-vercel --stream"
},
"dependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/node": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/config-lerna-scopes": "^17.0.2",
"@parcel/packager-ts": "^2.6.2",
"@parcel/transformer-typescript-types": "^2.6.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/node": "^16.11.43",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^43.0.1",
"husky": "^8.0.1",
"jest": "^28.1.2",
"jest-config": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"lerna": "^5.1.8",
"parcel": "^2.6.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.8.2",
"type-fest": "^2.16.0",
"typescript": "^4.7.4",
"vercel": "^27.0.2"
},
"engines": {
"node": ">= 14"
},
"packageManager": "yarn@3.2.1"
}