-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2 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
{
"name": "lfx-one",
"license": "MIT",
"author": "The Linux Foundation",
"private": true,
"scripts": {
"build": "turbo run build",
"build:development": "turbo run build:development",
"build:production": "turbo run build:production",
"build:staging": "turbo run build:staging",
"start": "turbo run start --log-prefix=none",
"lint": "turbo run lint",
"test": "turbo run test",
"e2e": "turbo run e2e",
"e2e:ui": "turbo run e2e:ui",
"e2e:headed": "turbo run e2e:headed",
"watch": "turbo run watch",
"start:server": "turbo run start:server",
"start:prod": "pm2 start ecosystem.config.js",
"stop:prod": "pm2 stop lfx-one",
"restart:prod": "pm2 restart lfx-one",
"reload:prod": "pm2 reload lfx-one",
"logs:prod": "pm2 logs lfx-one",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,html,css,scss,md,mdx,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,html,css,scss,md,mdx,json}\"",
"lint:check": "turbo run lint:check",
"check-types": "turbo run check-types",
"commitlint": "commitlint",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-angular": "^20.0.0",
"@linuxfoundation/lfx-ui-core": "^0.0.22",
"@types/node": "^24.2.1",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@typescript-eslint/type-utils": "^8.39.1",
"@typescript-eslint/types": "^8.39.1",
"@typescript-eslint/utils": "^8.39.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"tslib": "^2.8.1",
"turbo": "^2.6.3",
"typescript": "5.8.3"
},
"engines": {
"node": ">=22"
},
"packageManager": "yarn@4.9.2",
"workspaces": [
"apps/*",
"packages/*"
],
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"prettier --write",
"turbo run lint --"
],
"**/*.{html,css,scss,md,json}": [
"prettier --write"
]
},
"dependencies": {
"chart.js": "^4.5.1"
}
}