-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.69 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
{
"name": "apollon2",
"version": "1.0.0",
"description": "",
"private": true,
"workspaces": [
"standalone/*",
"library"
],
"scripts": {
"build": "npm run build:lib && concurrently \"npm run build:server\" \"npm run build:webapp\"",
"build:lib": "npm run build --workspace=@apollon2/library",
"build:server": "npm run build --workspace=@apollon2/server",
"build:webapp": "npm run build --workspace=@apollon2/webapp",
"start": "concurrently \"npm run start:server\" \"npm run start:webapp\"",
"start:server": "npm run start --workspace=@apollon2/server",
"start:webapp": "npm run start --workspace=@apollon2/webapp",
"lint": "concurrently \"npm run lint:lib\" \"npm run lint:server\" \"npm run lint:webapp\"",
"lint:lib": "npm run lint --workspace=@apollon2/library",
"lint:server": "npm run lint --workspace=@apollon2/server",
"lint:webapp": "npm run lint --workspace=@apollon2/webapp",
"lint:fix": "concurrently \"npm run lint:fix:lib\" \"npm run lint:fix:server\" \"npm run lint:fix:webapp\"",
"lint:fix:lib": "npm run lint:fix --workspace=@apollon2/library",
"lint:fix:server": "npm run lint:fix --workspace=@apollon2/server",
"lint:fix:webapp": "npm run lint:fix --workspace=@apollon2/webapp",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|tsx|json)\"",
"format:check": "prettier --ignore-path .gitignore --check \"**/*.(js|ts|tsx|json)\"",
"preview": "husky"
},
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"concurrently": "9.1.0",
"husky": "9.1.7",
"prettier": "3.4.2"
}
}