-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
47 lines (47 loc) · 1.81 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
{
"name": "melody-auth",
"version": "1.2.6",
"description": "A turnkey OAuth & authentication system.",
"license": "MIT",
"author": "Baozier",
"repository": "https://github.com/ValueMelody/melody-auth",
"workspaces": [
"shared",
"server",
"sdks/web-sdk",
"sdks/react-sdk",
"sdks/vue-sdk",
"sdks/angular-sdk"
],
"scripts": {
"type:check:sdks": "npm run type:check -w=sdks/web-sdk && npm run type:check -w=sdks/react-sdk && npm run type:check -w=sdks/vue-sdk && npm run type:check -w=sdks/angular-sdk",
"type:check": "npm run type:check -w=shared && npm run type:check -w=server && npm run type:check:sdks && cd admin-panel && npm run type:check",
"lint:check": "eslint ./ --ext .ts,.tsx,.js,.cjs --ignore-pattern 'examples/*'",
"lint:fix": "eslint ./ --fix --ext .ts,.tsx,.js,.cjs",
"build:sdks": "npm run build -w=sdks/web-sdk && npm run build -w=sdks/react-sdk && npm run build -w=sdks/vue-sdk && npm run build -w=sdks/angular-sdk",
"build": "npm run build -w=shared && npm run build:sdks",
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitest/mocker": "^3.0.7",
"@vuepress/bundler-vite": "^2.0.0-rc.19",
"@vuepress/theme-default": "^2.0.0-rc.74",
"eslint": "^8.52.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"ioredis-mock": "^8.9.0",
"sass-embedded": "^1.85.0",
"vue": "^3.4.0",
"vuepress": "^2.0.0-rc.19"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.40.0"
}
}