-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.65 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.65 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
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
{
"name": "sample-mono-stack",
"packageManager": "yarn@3.6.1",
"private": true,
"type": "module",
"workspaces": [
"packages/client/*",
"packages/server/*"
],
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/generator": "^7.22.9",
"@babel/node": "^7.22.6",
"@babel/parser": "^7.22.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.22.7",
"@babel/plugin-transform-parameters": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@babel/runtime": "^7.22.6",
"@types/config": "^3.3.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.7",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"babel-core": "^6.26.3",
"babel-jest": "^29.6.2",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-import-meta": "^2.2.1",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"core-js": "^3.32.0",
"csstype": "^3.1.2",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.4",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"scripts": {
"jest": "./scripts/runJest",
"lint": "yarn workspaces foreach run lint",
"typeCheck": "yarn workspaces foreach run typeCheck",
"start-client-frontend:dev": "yarn workspace @app/client-frontend start-frontend:dev",
"start-server-frontend:dev": "yarn workspace @app/server-frontend start-frontend:dev",
"docker-up:dev": "./scripts/docker-compose/development up",
"docker-tail:dev": "./scripts/docker-compose/development tail",
"docker-down:dev": "./scripts/docker-compose/development down",
"docker:dev": "yarn docker-down:dev && yarn docker-up:dev && yarn docker-tail:dev"
},
"dependencies": {
"config": "^3.3.9",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1"
}
}