-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.56 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.56 KB
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
{
"name": "@gjsify/website",
"version": "0.0.1",
"description": "Website of gjsify.org ",
"main": "package.json",
"repository": "git@github.com:gjsify/website.git",
"author": "Pascal Garber <pascal@artandcode.studio>",
"license": "AGPL-3.0",
"scripts": {
"start:dev": "yarn workspace @gjsify/website-backend run start:dev",
"start:prod": "yarn workspace @gjsify/website-backend run start:prod",
"build": "concurrently 'yarn:build:*'",
"build:backend": "yarn workspace @gjsify/website-backend run build",
"build:theme": "yarn workspace @gjsify/website-theme run build",
"watch": "concurrently 'yarn:watch:*'",
"watch:backend": "yarn workspace @gjsify/website-backend run watch",
"watch:theme": "yarn workspace @gjsify/website-theme run watch"
},
"devDependencies": {
"@ribajs/eslint-config": "workspace:^",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/experimental-utils": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "2.5.1",
"typescript": "4.6.2"
},
"workspaces": [
"packages/*",
"!vendor/riba",
"vendor/riba/packages/*",
"vendor/riba/backend/*",
"vendor/riba/infra/*",
"vendor/riba/vendor/*",
"!vendor/riba/infra/cli",
"!vendor/riba/infra/doc",
"!vendor/riba/infra/schematics"
],
"resolutions": {
"bootstrap": "twbs/bootstrap#main"
},
"packageManager": "yarn@3.2.0",
"dependencies": {
"concurrently": "^7.0.0"
}
}