-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
138 lines (138 loc) · 4.17 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@ulixee/platform",
"private": true,
"description": "The internal developer environment that we use for building and running the Ulixee platform",
"scripts": {
"prepare": "husky",
"build": "yarn && yarn tsc && yarn build:docpage && cd ./build && yarn",
"build:docpage": "yarn workspace @ulixee/datastore-docpage build",
"build:broker": "yarn workspace @ulixee/databroker-admin build",
"build:all": "yarn build:broker yarn build",
"build:dist": "shx rm -rf build-dist && tsc -b tsconfig.dist.json && yarn copy:dist && yarn workspace @ulixee/datastore-docpage build:dist && yarn workspace @ulixee/databroker-admin build:dist",
"copy:build": "ulx-repo-after-build && ulx-repo-adjust-paths",
"copy:dist": "ulx-repo-after-build --dist",
"tsc": "tsc -b -i tsconfig.json && yarn copy:build",
"watch": "yarn tsc && tsc -b -w tsconfig.json",
"start": "yarn workspace @ulixee/cloud start",
"test": "yarn copy:build && yarn test:build",
"test:build": "cd ./build && cross-env ULX_DATA_DIR=.data-test ULX_DATASTORE_DIR=.data-test ULX_QUERY_HERO_SESSIONS_DIR=.data-test/hero-sessions NODE_ENV=test jest",
"test:all": "yarn copy:build && cross-env ULX_DATA_DIR=.data-test ULX_DATASTORE_DIR=.data-test ULX_QUERY_HERO_SESSIONS_DIR=.data-test/hero-sessions NODE_ENV=test jest",
"lint": "eslint --cache ./",
"version:check": "ulx-repo-version-check fix",
"version:bump": "ulx-repo-version-bump"
},
"repository": "[email protected]:ulixee/platform.git",
"author": "Ulixee",
"license": "MIT",
"bugs": {
"url": "https://github.com/ulixee/platform/issues"
},
"homepage": "https://ulixee.org",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@lerna-lite/version": "^3.9.1",
"@lerna-lite/publish": "^3.9.1",
"@types/jest": "^29.5.11",
"@types/node": "^18.19.10",
"@ulixee/repo-tools": "^1.0.34",
"concurrently": "^6.2.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"husky": "^9.0.7",
"jest": "^30.0.0-alpha.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"shx": "^0.3.3",
"typescript": "~5.6.3"
},
"#linkMainchain": {
"packages": [
"../mainchain/localchain",
"../mainchain/client/nodejs"
]
},
"workspaces": {
"packages": [
"desktop/*",
"datastore/*",
"datastore/plugins/*",
"cloud/*",
"sql/*",
"client/*",
"cli",
"utils",
"schema",
"specification",
"end-to-end",
"../hero/build/agent/*",
"../hero/build/client",
"../hero/build/commons",
"../hero/build/core",
"../hero/build/interfaces",
"../hero/build/js-path",
"../hero/build/net",
"../hero/build/plugin-utils",
"../hero/build/plugins/*",
"../hero/build/real-user-agents",
"../hero/build/specification",
"../hero/build/testing",
"../hero/build/timetravel"
],
"nohoist": [
"**/babel-loader",
"**/electron-webpack",
"**/@electron",
"**/@electron/**",
"**/electron",
"**electron**",
"**/electron-*",
"**/electron-log",
"**/electron-builder",
"**/electron-webpack/**",
"**/electron-updater",
"**/electron-clipboard-ex",
"**/@ulixee/repo-tools",
"@ulixee/repo-tools",
"**/vite",
"**/vite-plugin-prismjs",
"**/vite/**",
"**/vite-svg-loader",
"**/vite-plugin-prismjs",
"**/vite-*",
"**/@vitejs/**",
"**/@vue/**",
"**/@vue/**/**",
"**/vue",
"**/vue-loader",
"**/vue-class-component",
"**/vue-router",
"**/vue-template-compiler",
"**/vue-class-component",
"**/@types/**",
"**/autoprefixer",
"**/postcss",
"**/tailwindcss",
"**/@nodelib",
"**/@nodelib/**"
]
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"resolutions": {
"tough-cookie": "^5.0.0"
},
"packageManager": "[email protected]"
}