-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.79 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.79 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
{
"name": "@dddforum/main",
"version": "1.0.0",
"description": "",
"license": "ISC",
"workspaces": [
"packages/shared",
"packages/backend",
"packages/frontend"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"clean": "npm run clean --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"build:ci:backend": "npm run build --workspace @dddforum/shared && npm run build --workspace @dddforum/backend",
"build:ci:frontend": "npm run build --workspace @dddforum/shared && npm run build --workspace @dddforum/frontend",
"start:ci:backend": "npm run start:ci --workspace @dddforum/backend",
"start:dev:backend": "npm run start:dev --workspace @dddforum/backend",
"start:dev:frontend": "npm run start:dev --workspace @dddforum/frontend",
"lint": "eslint \"**/src/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"test:unit": "cross-env NODE_ENV=development jest -c jest.config.unit.ts",
"test:e2e": "cross-env NODE_ENV=development jest -c jest.config.e2e.ts",
"test:infra": "cross-env NODE_ENV=development jest -c jest.config.infra.ts"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^18.16.19",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.2.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.5.0",
"jest-cucumber": "^3.0.1",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.5"
}
}