forked from Protofy-xyz/Protofy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.89 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
{
"name": "site",
"private": true,
"version": "0.0.1",
"workspaces": [
"apps/admin-api",
"apps/api",
"apps/expo",
"apps/next",
"apps/next-compiled",
"packages/*",
"./tests"
],
"scripts": {
"native": "yarn prepare-dev && yarn workspace expo-app start",
"start": "yarn prepare-dev && yarn start-fast",
"start-fast": "START_ALL=1 pm2 start ecosystem.config.js --no-daemon",
"start-service": "yarn prepare-dev && yarn start-service-fast",
"start-service-fast": "START_ALL=1 pm2 start ecosystem.config.js && yarn monit",
"start-dev": "yarn prepare-dev && yarn start-dev-fast",
"start-dev-fast": "FULL_DEV=1 && yarn start-fast",
"prepare-dev": "node prepare.js && yarn workspace api prepare-dev && yarn workspaces foreach --all --all --exclude api run prepare-dev && yarn build",
"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 api add-user",
"build": "yarn workspaces foreach --all run build",
"package": "yarn workspaces foreach --all run clean && yarn prepare-dev",
"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 git@github.com:Protofy-xyz/Protofy-internal.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"
},
"resolutions": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-refresh": "^0.14.0",
"react-native-svg": "15.3.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": "^3.2.5",
"rimraf": "^5.0.1",
"semver": "^7.5.4",
"turbo": "^1.13.3",
"typescript": "^5.4.5"
},
"packageManager": "yarn@3.5.1",
"devDependencies": {
"npm-run-all": "^4.1.5",
"ts-node": "10.9.1"
}
}