-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
91 lines (91 loc) · 3.53 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
{
"name": "site",
"private": true,
"version": "0.0.1",
"workspaces": [
"apps/core",
"apps/api",
"apps/expo",
"apps/next",
"apps/adminpanel",
"apps/nextra",
"apps/jupyter",
"apps/python",
"packages/*",
"scripts",
"./tests"
],
"scripts": {
"native": "yarn prepare-dev && yarn workspace expo-app start",
"dev": "yarn prepare-dev && yarn dev-fast",
"dev-fast": " pm2 start ecosystem.config.js --no-daemon",
"dev-service": "yarn prepare-dev && yarn dev-service-fast",
"dev-service-fast": "pm2 start ecosystem.config.js && yarn monit",
"coredev-service": "FULL_DEV=1 yarn prepare-dev && FULL_DEV=1 yarn dev-service-fast",
"coredev": "yarn prepare-dev && yarn coredev-fast",
"coredev-fast": "FULL_DEV=1 && yarn dev-fast",
"coredev-profiler": "PROFILER_ENABLED=true yarn coredev",
"coredev-profiler-fast": "PROFILER_ENABLED=true yarn coredev-fast",
"prepare-dev": "node prepare.js && yarn build && yarn workspace api prepare-dev && yarn workspaces foreach --all --exclude api run prepare-dev",
"prod": "NODE_ENV=production pm2 start ecosystem.config.js --no-daemon",
"prod-service": "NODE_ENV=production pm2 start ecosystem.config.js && yarn monit",
"add-user": "yarn workspace core add-user",
"build": "yarn workspaces foreach -t --all run build",
"docker-build": "yarn workspaces foreach -t --all run docker-build",
"package": "yarn workspaces foreach --all run clean && yarn prepare-dev",
"package-apis": "yarn workspace api package && yarn workspace core package",
"package-fast": "yarn workspaces foreach --all --exclude electron-app run package",
"status": "pm2 status",
"monit": "pm2 monit",
"dashboard": "pm2 plus",
"kill": "pm2 kill",
"stop": "pm2 stop all",
"logs": "pm2 logs",
"test:all:long": "LONG_TESTS=true yarn test:all",
"test:all": "NODE_ENV=development FORCE_COLOR=1 yarn workspaces foreach --all run test",
"test:all:debug": "FORCE_COLOR=1 TEST_DEBUG=true yarn test:all",
"test:global": "NODE_ENV=development FORCE_COLOR=1 yarn workspace tests test",
"test:e2egen": "NODE_ENV=development npx playwright codegen",
"test:protolib": "FORCE_COLOR=1 yarn workspace protolib test",
"create-environment": "node copy.js",
"sync-setup": "git remote add upstream [email protected]:Protofy-xyz/Protofy.git",
"sync": "git fetch upstream && git merge upstream/main",
"fix": "manypkg fix",
"check-deps": "check-dependency-version-consistency .",
"clean": "yarn workspaces foreach --all run clean",
"protofy-update-setup": "git remote add protofy [email protected]:Protofy-xyz/Protofy.git",
"protofy-update": "git fetch protofy && git rebase protofy/main && yarn clean",
"python": "node apps/python/run.js",
"git-origin-setup": "node git-origin-setup.js"
},
"resolutions": {
"react": "18.2.0",
"react-dom": "18.2.0",
"react-refresh": "^0.14.0",
"react-native-svg": "15.2.0",
"react-native-web": "~0.19.12"
},
"dependencies": {
"@babel/runtime": "^7.24.6",
"@manypkg/cli": "^0.21.4",
"async": "3.2.5",
"check-dependency-version-consistency": "^4.1.0",
"eslint": "^9.3.0",
"fdir": "6.1.1",
"glob": "^10.3.10",
"ignore": "5.3.0",
"mkdirp": "^3.0.1",
"node-gyp": "^10.1.0",
"pm2": "^5.3.0",
"prettier": "^2.8.1",
"rimraf": "^5.0.1",
"semver": "^7.5.4",
"turbo": "^1.13.3"
},
"packageManager": "[email protected]",
"devDependencies": {
"npm-run-all": "^4.1.5",
"ts-node": "10.9.1",
"typescript": "~5.3.3"
}
}