-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.71 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
{
"name": "starter",
"private": true,
"scripts": {
"create-site-configs-env": "npx @comet/cli inject-site-configs -f site-configs/site-configs.ts -i .env.site-configs.tpl -o .env.site-configs",
"dev": "npm run create-site-configs-env && dev-pm start",
"copy-schema-files": "node copy-schema-files.js",
"lint": "run-p lint:*",
"lint:root": "npx prettier --check './!(admin|api|site|create-app)/**/*.{js,json,md,yml,yaml}' && npx cspell '**'",
"lint:api": "npm --prefix api run lint",
"lint:admin": "npm --prefix admin run lint",
"lint:site": "npm --prefix site run lint",
"test:ci": "run-p test:ci:*",
"test:ci:api": "npm --prefix api run test:ci",
"build": "run-p build:*",
"build:api": "npm --prefix api run build",
"build:admin": "npm --prefix admin run build",
"build:site": "npm --prefix site run build",
"prepare": "husky",
"browser": "run-p browser:api browser:admin browser:site",
"browser:api": "dotenv -- sh -c 'open-cli $API_URL/graphql'",
"browser:admin": "dotenv -- sh -c 'open-cli $ADMIN_URL'",
"browser:site": "dotenv -- sh -c 'open-cli $SITE_URL'",
"browser:jaeger": "dotenv -- sh -c 'open-cli http://localhost:$JAEGER_UI_PORT'"
},
"devDependencies": {
"@comet/cli": "^7.7.0",
"@comet/dev-process-manager": "^2.6.1",
"cspell": "^8.16.0",
"dotenv-cli": "^7.4.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"npm-run-all2": "^5.0.2",
"open-cli": "^8.0.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"typescript": "~5.5.0"
},
"packageManager": "[email protected]"
}