This repository has been archived by the owner on Jun 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.54 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
{
"private": true,
"workspaces": [
"packages/**",
"services/**"
],
"name": "launchpad-ts",
"version": "1.0.0",
"repository": "https://github.com/appliedblockchain/launchpad-ts",
"packageManager": "[email protected]",
"scripts": {
"start": "GIT_HASH_VERSION=$(git rev-parse HEAD) docker-compose -f docker-compose.local.yml up",
"start:build": "GIT_HASH_VERSION=$(git rev-parse HEAD) docker-compose -f docker-compose.local.yml up --build",
"start:prod": "GIT_HASH_VERSION=$(git rev-parse HEAD) docker-compose -f docker-compose.yml up --build",
"start:web": "yarn workspace @launchpad-ts/web start",
"start:api": "yarn workspace @launchpad-ts/api start:dev",
"lint": "eslint \"**/*.{js,ts,tsx}\" --quiet --fix",
"e2e:run": "yarn playwright test",
"test:web": "yarn workspace @launchpad-ts/web test",
"test:api": "yarn workspace @launchpad-ts/api test:all"
},
"dependencies": {
"@arkweid/lefthook": "^0.7.7",
"@commitlint/cli": "^19.2.0",
"@typescript-eslint/eslint-plugin": "^7.3.0",
"@typescript-eslint/parser": "^7.3.0",
"commitlint-config-jira": "^1.6.4",
"commitlint-plugin-jira-rules": "^1.6.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"typescript": "^5.4.2"
},
"devDependencies": {
"@playwright/test": "^1.42.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}