forked from Protofy-xyz/Protofy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.56 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
{
"name": "site",
"private": true,
"version": "0.0.1",
"workspaces": [
"apps/*",
"packages/*",
"./tests"
],
"scripts": {
"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-adminapi": "yarn prepare-dev && yarn start-dev-adminapi-fast",
"start-dev-adminapi-fast": "DEV_ADMIN_API=1 && yarn start-fast",
"prepare-dev": "node prepare.js && yarn workspace api prepare-dev && yarn workspaces foreach --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 run build",
"package": "yarn workspaces foreach run clean && yarn prepare-dev && yarn workspaces foreach --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 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",
"fix": "manypkg fix",
"check-deps": "check-dependency-version-consistency .",
"clean": "yarn prepare-dev && yarn workspaces foreach run clean"
},
"resolutions": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-refresh": "^0.14.0",
"react-native-svg": "13.4.0",
"react-native-web": "^0.18.12"
},
"dependencies": {
"@babel/runtime": "^7.18.9",
"@manypkg/cli": "^0.19.1",
"async": "3.2.5",
"check-dependency-version-consistency": "^3.0.3",
"eslint": "^8.21.0",
"fdir": "6.1.1",
"glob": "^10.3.10",
"ignore": "5.3.0",
"mkdirp": "^3.0.1",
"node-gyp": "^9.3.1",
"pm2": "^5.3.0",
"prettier": "^2.8.1",
"rimraf": "^5.0.1",
"semver": "^7.5.4",
"turbo": "^1.10.3",
"typescript": "^5.2.2"
},
"packageManager": "yarn@3.5.0",
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}