forked from AxaFrance/oidc-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.92 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@axa-fr/react-oidc-root",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "https://github.com/AxaGuilDEv/react-oidc.git"
},
"scripts": {
"publish": "lerna publish",
"postinstall": "lerna bootstrap",
"start": "npm run example:context",
"clean": "lerna clean",
"example:redux": "npm -C ./examples/redux run start",
"example:context": "npm -C ./examples/context run start",
"example:vanilla": "npm -C ./examples/vanilla run start",
"build:example:redux": "npm -C ./examples/redux run build",
"build:example:context": "npm -C ./examples/context run build",
"build:example:vanilla": "npm -C ./examples/vanilla run build",
"test": "jest --config=jest.config.js",
"lint": "npm run lint:js && npm run lint:ts **/*.ts",
"lint:js": "cross-env NODE_ENV=production eslint . --cache --cache-location=.cache/eslint --ext .js,.jsx,.json --report-unused-disable-directives",
"lint:ts": "tslint -p . -c tslint.json -t stylish",
"dev": "concurrently --kill-others \"npm run dev:js\" \"npm run dev:ts\"",
"dev:js": "lerna exec --parallel -- cross-env-shell node \\$LERNA_ROOT_PATH/scripts/watch-js.js",
"dev:ts": "lerna exec --parallel -- cross-env-shell node \\$LERNA_ROOT_PATH/scripts/watch-ts.js",
"precommit": "lint-staged",
"prepare": "node ./scripts/npm.js",
"changelog": "auto-changelog --unreleased --commit-limit false --template changelog-template.hbs -p --output ./CHANGELOG.md"
},
"lint-staged": {
"linters": {
"*.js": [
"npm run lint:js -- --fix",
"git add"
],
"*.ts": [
"npm run lint:ts -- --fix",
"git add"
]
}
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-export-default-from": "^7.7.4",
"@babel/plugin-proposal-export-namespace-from": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-syntax-import-meta": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.8.3",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^11.0.4",
"@testing-library/react-hooks": "^3.4.2",
"@types/jest": "^25.1.0",
"@types/react": "^16.9.23",
"@types/react-redux": "^7.1.7",
"@types/recompose": "^0.30.7",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"auto-changelog": "^1.13.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"chalk": "^2.4.2",
"codacy-coverage": "^3.4.0",
"commander": "^2.20.0",
"concurrently": "^5.1.0",
"cross-env": "^6.0.0",
"enzyme": "^3.10.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^23.2.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^2.5.1",
"expect": "^24.8.0",
"fs-extra": "^8.0.1",
"inquirer": "^7.0.1",
"jest": "25.1.0",
"lerna": "^3.19.0",
"lint-staged": "^9.5.0",
"npmlog": "^4.1.2",
"oidc-client": "^1.10.1",
"prettier": "^1.18.2",
"raf": "^3.4.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"recompose": "^0.30.0",
"redux": "^4.0.5",
"redux-oidc": "^3.1.7",
"shelljs": "^0.8.3",
"twit": "^2.2.11",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=8.0.0",
"yarn": ">=1.3.2"
},
"private": true,
"dependencies": {
"@testing-library/user-event": "^12.1.7",
"enzyme-adapter-react-16": "^1.14.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0"
}
}