-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
54 lines (54 loc) · 2.05 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
{
"name": "@citrineos/workspace",
"version": "1.4.3",
"private": false,
"devDependencies": {
"@eslint/js": "9.0.0",
"@types/eslint__js": "8.42.3",
"concurrently": "8.2.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"prettier": "3.2.5",
"typescript": "5.5.4",
"typescript-eslint": "7.6.0"
},
"scripts": {
"install-all": "npm i --verbose",
"copy-assets": "npm run copy-assets --prefix ./Server",
"build": "tsc --build --verbose",
"build:base:esm": "npm run build:esm --prefix ./00_Base",
"postbuild": "npm run copy-assets && npm run build:base:esm",
"clear-cache": "npm cache clean --force",
"remove-dependencies": "rm -rf package-lock.json **/package-lock.json **/**/package-lock.json node_modules **/node_modules **/**/node_modules",
"fresh": "npm run clean && npm run remove-dependencies && npm run clear-cache",
"clean-tsbuildinfo": "find . -name tsconfig.tsbuildinfo -not -path '*/node_modules/*' -exec rm -f {} +",
"clean-dist": "find . -type d -name dist -not -path '*/node_modules/*' -exec rm -rf {} +",
"clean": "npm run clean-dist && npm run clean-tsbuildinfo",
"start": "cd ./Server && npm run start",
"start-docker": "cd ./Server && npm run start-docker",
"start-docker-cloud": "cd ./Server && npm run start-docker-cloud",
"lint": "npx eslint ./",
"lint-fix": "npm run prettier && npx eslint --fix ./",
"prettier": "prettier --write .",
"fresh-and-install-all": "npm run fresh && npm run install-all",
"sync-db": "ts-node ./db.sync.ts",
"start-everest": "npm run start-everest --prefix ./Server",
"test": "jest --config jest.config.ts",
"coverage": "jest --config jest.config.ts --coverage"
},
"workspaces": [
"00_Base",
"01_Data",
"02_Util",
"03_Modules/Certificates",
"03_Modules/Configuration",
"03_Modules/EVDriver",
"03_Modules/Monitoring",
"03_Modules/OcppRouter",
"03_Modules/Reporting",
"03_Modules/SmartCharging",
"03_Modules/Tenant",
"03_Modules/Transactions",
"Server"
]
}