-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 2.11 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
{
"name": "root",
"private": true,
"scripts": {
"create_lerna": "npx lerna create \"@wallet/ui\" ./packages --es-module --yes",
"bootstrap": "rimraf node_modules && npx lerna bootstrap",
"preclean": "yarn prebuild",
"prebuild": "npx lerna run prebuild && rimraf dist",
"export": "npx lerna run export --parallel --scope @wallet/frontend",
"start": "npx lerna run start",
"build": "npx lerna run build",
"start:dev": "npx lerna run start:dev",
"start:debug": "npx lerna run start:debug",
"start:debugi": "yarn build:frontend && yarn start:prod:frontend && yarn start:debug:backend",
"start:prod": "npx lerna run start:prod",
"build:backend": "npx lerna run build --parallel --scope @wallet/backend",
"build:frontend": "npx lerna run build --parallel --scope @wallet/frontend",
"start:frontend": "npx lerna run start --parallel --scope @wallet/frontend",
"start:dev:frontend": "npx lerna run start:dev --parallel --scope @wallet/frontend",
"start:debug:frontend": "npx lerna run start:debug --parallel --scope @wallet/frontend",
"start:prod:frontend": "npx lerna run start:prod --parallel --scope @wallet/frontend",
"start:backend": "npx lerna run start --parallel --scope @wallet/backend",
"start:dev:backend": "npx lerna run start:dev --parallel --scope @wallet/backend",
"start:debug:backend": "npx lerna run start:debug --parallel --scope @wallet/backend",
"start:prod:backend": "npx lerna run start:prod --parallel --scope @wallet/backend",
"release:patch": "npx lerna version patch",
"clean": "npx lerna clean --yes",
"docker": "docker compose -p wallet up frontend --build -d"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"lerna": "^6.5.1",
"prettier": "^2.8.6",
"source-map-support": "^0.5.21",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^5.0.2"
},
"dependencies": {}
}