-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
56 lines (56 loc) Β· 2.04 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
{
"version": "1.0.0",
"name": "crusher.dev",
"private": true,
"workspaces": [
"packages/*"
],
"description": "Mono repository for crusher.dev",
"scripts": {
"crusher": "npx crusher-cli",
"crusher:run": "npx crusher-cli test:run",
"setup:oss": "node setup/index.js -m open-source",
"setup:ee": "node setup/index.js -m enterprise",
"setup:prod": "node setup/index.js -m enterprise --sm aws --ah crusher.dev --bd https://backend.crusher.dev/ --fd https://app.crusher.dev/",
"setup:local": "node setup/index.js -m enterprise --sm local --ah localhost --bd http://localhost:8000/ --fd http://localhost:3000/",
"setup:docker": "node setup/index.js -m enterprise --sm local --ah localhost --bd http://localhost:3000/server/ --fd http://localhost:3000/",
"build:oss": "sh scripts/build/build-oss.sh && cd docker/oss/ && docker-compose up --build -d",
"start": "pm2 start",
"log:app": "pm2 logs crusher-app",
"lint": "lerna run prettify",
"docker:heroku": "cd docker/oss/ && docker-compose up --build -d",
"docker:build:heroku": "sh scripts/build/build-oss.sh && yarn docker:heroku",
"db:migration": "node setup/dbMigration.js"
},
"devDependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"pm2": "^5.1.2"
},
"dependencies": {
"@octokit/rest": "^18.0.14",
"@swc/core": "^1.2.218",
"@swc/helpers": "^0.4.3",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"enquirer": "^2.3.6",
"mysql2": "^2.2.5",
"patch-package": "^6.2.2",
"pg": "^8.7.1",
"postinstall-postinstall": "^2.1.0",
"putout": "^18.16.0",
"regenerator-runtime": "^0.13.9",
"semver": "^7.3.7",
"shelljs": "^0.8.4",
"source-map-support": "^0.5.20",
"yargs": "^17.0.1"
},
"license": "MIT",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"@reactour/[email protected]": "patches/@[email protected]"
}
}
}