-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 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
{
"private": true,
"license": "MIT",
"version": "0.0.0",
"author": {
"name": "Raf Szuminski",
"email": "[email protected]",
"url": "https://rafszuminski.com"
},
"scripts": {
"[-- Build --]": "",
"airbnb:build": "turbo run build --filter=@oxygen/airbnb",
"explorer:build": "turbo run build --filter=@oxygen/explorer",
"sandbox:build": "turbo run build --filter=@oxygen/sandbox",
"trpc:build": "turbo run build --filter=@oxygen/trpc-*",
"build": "turbo run build",
"[-- Dev --]": "",
"airbnb:dev": "turbo run dev --scope=@oxygen/airbnb --no-cache --parallel --continue --include-dependencies",
"explorer:dev": "turbo run dev --scope=@oxygen/explorer --no-cache --parallel --continue --include-dependencies",
"sandbox:dev": "turbo run dev --scope=@oxygen/sandbox --no-cache --parallel --continue --include-dependencies",
"dev": "turbo run dev --no-cache --parallel --continue",
"[-- Clean --]": "",
"clean": "./scripts/clean.sh ./scripts/cleaner.txt .",
"clean:ts": "./scripts/clean.sh ./scripts/ts.txt .",
"clean:install": "turbo run clean && rimraf node_modules",
"clean:rebuild": "turbo run clean && rimraf node_modules && pnpm i && pnpm build",
"setup": "pnpm install && pnpm build",
"refresh": "pnpm clean && pnpm setup",
"[-- Deduplicate --]": "",
"deduplicate": "npx pnpm-deduplicate",
"deduplicate:check": "npx pnpm-deduplicate --list",
"[-- Format --]": "",
"format-lint": "prettier --config .prettierrc --check --ignore-unknown .",
"format-fix": "prettier --config .prettierrc --write --ignore-unknown -l .",
"[-- Upgrade --]": "",
"update-dependencies": "turbo update-dependencies && npx npm-check-updates -u"
},
"devDependencies": {
"@oxygen/tsconfig": "*",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@swc/core": "^1.3.27",
"@swc/helpers": "^0.4.14",
"@types/cors": "^2.8.13",
"@types/is-ci": "^3.0.0",
"@types/loadjs": "^4.0.1",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@types/object-hash": "3.0.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/uuid": "^9.0.0",
"@typescript-eslint/parser": "^5.48.2",
"bunchee": "^2.2.0",
"commitizen": "^4.2.6",
"eslint": "^8.32.0",
"eslint-config-custom-oxygen": "*",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"quicktype": "20.0.26",
"rimraf": "^4.1.1",
"rollup": "^3.10.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-node-externals": "^5.1.0",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"shx": "^0.3.4",
"tsup": "^6.5.0",
"turbo": "^1.7.0",
"typescript": "^4.9.4"
}
}