-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 3.13 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
{
"name": "@frachtwerk/essencium",
"version": "1.0.0",
"private": true,
"description": "This is a Next.js-based boilerplate monorepo.",
"keywords": [
"boilerplate",
"frontend",
"react",
"next",
"mantine"
],
"homepage": "https://github.com/Frachtwerk/essencium-frontend/blob/master/README.md",
"bugs": {
"url": "https://github.com/Frachtwerk/essencium-frontend/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:Frachtwerk/essencium-frontend.git"
},
"license": "MIT",
"author": "Frachtwerk GmbH",
"scripts": {
"build": "NX_BRANCH=$(git rev-parse --abbrev-ref HEAD) nx build @frachtwerk/essencium-app",
"clean": "nx run-many --target=clean && rimraf dist node_modules",
"clean:install": "pnpm i -w && pnpm clean && pnpm install",
"dev": "nx dev @frachtwerk/essencium-app",
"format:check": "NX_BRANCH=$(git rev-parse --abbrev-ref HEAD) nx affected --target=format:check --parallel=10",
"format:write": "NX_BRANCH=$(git rev-parse --abbrev-ref HEAD) nx affected --target=format:write --parallel=10",
"lint": "NX_BRANCH=$(git rev-parse --abbrev-ref HEAD) nx affected --target=lint --parallel=10",
"seed-db": "ts-node ./scripts/seed-db.ts",
"setup-env": "pnpm install && husky install",
"sort-package-json": "sort-package-json && nx affected --target=sort-package-json",
"test": "NX_BRANCH=$(git rev-parse --abbrev-ref HEAD) nx affected --target=test",
"test:e2e": "pnpm --filter @frachtwerk/essencium-app test:e2e",
"test:unit": "NX_BRANCH=$(git rev-parse --abbrev-ref HEAD) nx affected --target=test:unit --parallel=10",
"test:unit:coverage": "NX_BRANCH=$(git rev-parse --abbrev-ref HEAD) nx run-many --target=test:unit:coverage --parallel=10",
"test:unit:watch": "NX_BRANCH=$(git rev-parse --abbrev-ref HEAD) nx run-many --target=test:unit:watch --parallel=10"
},
"dependencies": {
"@nrwl/nx-cloud": "15.1.1",
"sort-package-json": "2.5.0"
},
"devDependencies": {
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@faker-js/faker": "7.6.0",
"@frachtwerk/eslint-config-essencium": "workspace:*",
"@frachtwerk/essencium-types": "workspace:*",
"@frachtwerk/prettier-config-essencium": "workspace:*",
"@nrwl/eslint-plugin-nx": "15.8.6",
"@types/fs-extra": "11.0.1",
"@types/node": "18.14.1",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"axios": "1.3.4",
"eslint": "8.35.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"fs-extra": "11.1.1",
"husky": "8.0.3",
"lint-staged": "14.0.0",
"nx": "15.8.6",
"prettier": "3.0.3",
"rimraf": "4.4.0",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"engines": {
"node": ">=18",
"pnpm": "7"
},
"volta": {
"node": "18.16.0"
}
}