-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 2.11 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
{
"name": "payload-auth0-plugin",
"version": "0.1.15",
"main": "dist/strategies/index.js",
"types": "dist/strategies/index.d.ts",
"repository": "https://github.com/finkinfridom/payload-auth0-plugin.git",
"author": "[email protected]",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"clean": "npx yarn-deduplicate yarn.lock",
"dev": "tsc --watch",
"build:tsc": "tsc --p tsconfig.components.json && tsc --p tsconfig.strategies.json",
"build:components": "webpack --config webpack.components.config.js",
"build": "rimraf dist/ && yarn build:tsc && yarn build:components",
"test": "jest",
"serve:cov": "serve coverage -c ../serve.json",
"push:cov": "yarn test && docker run -v $PWD:/code codacy/codacy-coverage-reporter report --coverage-reports /code/coverage/lcov.info"
},
"dependencies": {
"core-js": "^3.39.0",
"dotenv": "^16.4.7",
"express-openid-connect": "^2.17.0",
"payload": "^2.30.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.25.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.25.8",
"@babel/preset-react": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@parcel/transformer-typescript-types": "2.12.0",
"@types/express": "4.17.21",
"@types/jest": "29.5.13",
"@types/passport": "1.0.16",
"@types/pino": "7.0.5",
"babel-loader": "^9.2.1",
"cliui": "^8.0.1",
"css-loader": "^7.0.0",
"file-loader": "^6.2.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.1",
"postcss-loader": "^8.0.0",
"postcss-preset-env": "^10.0.7",
"rimraf": "^6.0.1",
"sass-loader": "^16.0.2",
"serve": "^14.2.4",
"string-width": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.4.2",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"url-loader": "^4.1.1",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}