-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
106 lines (106 loc) · 4.39 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
{
"name": "dpo-packrat",
"version": "0.9.12",
"private": true,
"license": "Apache-2.0",
"description": "Data Repository and Workflow Management for 3D data captures, models, and scenes",
"homepage": "https://github.com/Smithsonian/dpo-packrat#readme",
"repository": "git+https://github.com/Smithsonian/dpo-packrat.git",
"bugs": {
"url": "https://github.com/Smithsonian/dpo-packrat/issues"
},
"contributors": [
{
"name": "Jon Tyson",
"url": "https://github.com/jahjedtieson"
},
{
"name": "Karan Pratap Singh",
"url": "https://github.com/karanpratapsingh"
},
{
"name": "Hsin Tung",
"url": "https://github.com/shintung00"
}
],
"scripts": {
"init": "lerna bootstrap",
"start:client": "yarn workspace @dpo-packrat/client start",
"start:server": "yarn workspace @dpo-packrat/server start",
"start:server:inspect": "yarn workspace @dpo-packrat/server start:inspect",
"log:client": "docker logs -f packrat-client",
"log:server": "docker logs -f packrat-server",
"start:client:prod": "yarn workspace @dpo-packrat/client start:prod",
"start:server:prod": "yarn workspace @dpo-packrat/server start:prod",
"devbox:up": "./conf/scripts/devbox/up.sh",
"devbox:db": "./conf/scripts/devbox/db.sh",
"devbox:solr": "./conf/scripts/devbox/solr.sh",
"devbox:network": "./conf/scripts/devbox/network.sh",
"devbox:start": "docker exec -it packrat-devbox bash",
"devbox:down": "docker container rm packrat-devbox --force",
"dev": "docker compose --env-file .env.dev -p dpo-packrat -f ./conf/docker/docker-compose.dev.yml up -d",
"dev:solr": "docker compose --env-file .env.dev -p dpo-packrat -f ./conf/docker/docker-compose.dev.yml up -d packrat-solr",
"dev:proxy": "docker compose --env-file .env.dev -p dpo-packrat -f ./conf/docker/docker-compose.dev.yml up -d packrat-proxy",
"dev:db": "docker compose --env-file .env.dev -p dpo-packrat -f ./conf/docker/docker-compose.dev.yml up -d db",
"dev:server": "docker compose --env-file .env.dev -p dpo-packrat -f ./conf/docker/docker-compose.dev.yml up -d packrat-server",
"dev:client": "docker compose --env-file .env.dev -p dpo-packrat -f ./conf/docker/docker-compose.dev.yml up -d packrat-client",
"prod": "docker compose --env-file .env.prod -p dpo-packrat -f ./conf/docker/docker-compose.prod.yml up -d",
"deploy:dev": "sh ./conf/scripts/deploy.sh dev",
"deploy:prod": "sh ./conf/scripts/deploy.sh prod",
"build:dev": "lerna run build:dev",
"build:prod": "lerna run build:prod",
"clean": "lerna run clean && rm -rf node_modules/ && rm -rf docs/public && rm -rf docs/resources/_gen && rm -f docs/.hugo_build.lock",
"clean:docker": "docker compose -f ./conf/docker/docker-compose.dev.yml down && docker system prune -f",
"generate:server:prisma": "yarn workspace @dpo-packrat/server generate:prisma",
"postinstall": "lerna run postinstall && yarn install:e2e",
"install:e2e": "cd e2e && yarn install --frozen-lockfile && cd ..",
"lint": "yarn eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "yarn prettier --write . && yarn lint --fix",
"test": "yarn workspaces run test",
"test:e2e": "cd e2e && yarn test",
"test:act": "act pull_request --secret-file ./github/workflows/.secrets",
"docs": "rm -rf docs/public && cd docs && hugo",
"docs:clean": "rm -rf docs/public && rm -rf docs/resources/_gen && rm docs/.hugo_build.lock",
"install:husky": "husky install",
"upgradelatest": "lerna exec -- yarn upgrade --latest"
},
"resolutions": {
"react-error-overlay": "6.0.9"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "4.10.0",
"@typescript-eslint/parser": "4.10.0",
"@typescript-eslint/typescript-estree": "4.10.0",
"eslint": "6.6.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.2"
},
"devDependencies": {
"@types/node": "18.7.18",
"concurrently": "7.4.0",
"copyfiles": "2.4.1",
"husky": "^8.0.0",
"lerna": "5.5.2",
"nodemon": "2.0.20",
"prettier": "2.7.1",
"typescript": "^4.7.4"
},
"workspaces": {
"nohoist": [
"@dpo-packrat/client/**"
],
"packages": [
"client",
"server",
"common"
]
},
"volta": {
"node": "18.9.0",
"yarn": "1.22.19"
},
"main": "index.js",
"author": "Natasha Johnson"
}