-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 2.01 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
{
"name": "markus-morische",
"private": true,
"version": "0.0.1",
"description": "",
"scripts": {
"start": "concurrently \"yarn:start:*\"",
"start:strapi": "cd strapi && NODE_OPTIONS=\"\" npm run start",
"start:backend": "cd backend && dvm use 1.16.2 && deno run --allow-net --allow-read --importmap=imports.json --unstable --allow-env --config tsconfig.json app.ts",
"pm2:start": "yarn run pm2:start:strapi && yarn run pm2:start:backend",
"pm2:start:strapi": "pm2 --cwd strapi start strapi/pm2.strapi.config.js",
"pm2:start:backend": "dvm use 1.16.2 && pm2 --cwd backend start backend/pm2.backend.config.js",
"build": "yarn run build:types:schema && yarn run build:theme && yarn run build:strapi",
"build:theme": "yarn workspace @markus-morische/theme run build",
"build:strapi": "cd strapi && NODE_OPTIONS=\"\" npm run build && cd ..",
"build:types:schema": "schema-dts-gen --nodeprecated > ./backend/types/schema.ts"
},
"workspaces": [
"packages/riba/packages/*",
"packages/riba/backend/*",
"packages/riba/infra/*",
"packages/riba/vendor/*",
"!packages/riba/infra/cli",
"!packages/riba/infra/doc",
"!packages/riba/infra/schematics",
"theme"
],
"packageManager": "yarn@3.4.1",
"devDependencies": {
"@yarnpkg/sdks": "^3.0.0-rc.39",
"pm2": "^5.2.2",
"schema-dts-gen": "^1.1.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@ribajs/eslint-config": "workspace:packages/riba/infra/eslint-config",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/experimental-utils": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@yarnpkg/pnpify": "^4.0.0-rc.39",
"concurrently": "^7.6.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1"
},
"resolutions": {
"bootstrap": "twbs/bootstrap#main"
}
}