-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
87 lines (87 loc) · 3.4 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
{
"name": "react-directus-template",
"private": true,
"version": "0.0.1",
"packageManager": "[email protected]",
"license": "GPL-3.0",
"author": "Elias Mawa <[email protected]>",
"homepage": "https://github.com/celestialstag/react-directus-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/celestialstag/react-directus-template.git"
},
"bugs": {
"url": "https://github.com/celestialstag/react-directus-template/issues"
},
"engines": {
"node": ">16.14.0 <17.0.0"
},
"resolutions": {
"@emotion/react": "11.10.5",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"workspaces": [
"packages/*",
"lib/*",
"scripts/*"
],
"scripts": {
"lint": "echo 'linting @package/*' && yarn eslint . --ext .js,.ts,.tsx",
"lint:libs": "yarn workspaces foreach -p --from '@lib/*' run lint",
"lint:web": "yarn workspace @package/web lint",
"prettier": "yarn prettier --write .",
"check": "yarn workspaces foreach -pti --from '@lib/*' run check",
"check:watch": "yarn workspaces foreach -pti --from '@lib/*' run check:watch",
"service:start": "docker-compose up -d",
"service:stop": "docker-compose stop",
"directus:start": "yarn service:start directus",
"directus:stop": "yarn service:stop directus",
"services:start": "yarn service:start maria meilisearch directus",
"services:stop": "yarn service:stop maria meilisearch directus",
"test": "yarn workspaces foreach -pti --from '@lib/*' run test",
"test:unit": "yarn workspaces foreach -pti --from '@lib/*' run test:unit",
"test:web": "yarn workspace @package/web run test",
"watch": "yarn workspaces foreach -j unlimited -pi --from '@lib/*' run watch",
"watch:libs": "yarn workspaces foreach -j unlimited -pi --from '@lib/*' run watch",
"serve:web": "yarn workspace @package/web run serve",
"serve:cms": "yarn workspace @package/cms run develop",
"serve:keystone": "yarn workspace @package/keystone run serve",
"rollup": "yarn workspaces foreach -ti --from '{@lib/*,@package/*}' run rollup",
"rollup:watch": "yarn workspaces foreach -j unlimited -pi --from '@lib/*' run rollup:watch",
"optimize:web": "yarn workspace @package/web optimize",
"build": "yarn workspaces foreach -ti --from '{@lib/*,@package/*}' run rollup",
"build:web": "yarn workspace @package/web build",
"preview:web": "yarn workspace @package/web preview",
"start": "yarn workspaces foreach -pti --from '{@lib/*}' run start",
"start:web": "yarn workspace @package/web start",
"script:migrate": "yarn workspace @script/migrate start",
"web:build": "docker build -t ghcr.io/celestialstag/react-directus-template:0.0.1 .",
"web:start": "yarn service:start web"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@mantine/core": "^6.0.7",
"@mantine/hooks": "^6.0.7",
"@mantine/ssr": "^6.0.7",
"cross-env": "~7.0.3",
"dotenv": "~16.0.3",
"dotenv-expand": "~10.0.0",
"eslint-plugin-prettier": "~4.2.1",
"nodemon": "~2.0.22"
},
"devDependencies": {
"@types/jest": "~29.2.5",
"@types/lodash": "~4.14.191",
"@types/node": "~16.18.1",
"@typescript-eslint/eslint-plugin": "~5.58.0",
"@typescript-eslint/parser": "~5.58.0",
"eslint": "~8.31.0",
"eslint-config-prettier": "~8.6.0",
"jest": "~29.3.1",
"prettier": "~2.8.7",
"ts-jest": "~29.1.0",
"ts-node": "~10.9.1",
"typescript": "~5.0.4"
}
}