-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.86 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.86 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
{
"name": "dex-creator",
"version": "1.0.0",
"private": true,
"type": "module",
"workspaces": [
"app",
"api"
],
"main": "index.js",
"scripts": {
"app": "yarn workspace @dex-creator/app",
"api": "yarn workspace @dex-creator/api",
"dev": "concurrently -n \"api,app\" -c \"blue,green\" \"yarn dev:api\" \"yarn dev:app\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"dev:app": "cd app && yarn dev",
"dev:api": "cd api && yarn dev",
"build:app": "cd app && yarn build",
"build:api": "cd api && yarn build",
"orderly:start": "./scripts/orderly-db.sh start",
"orderly:stop": "./scripts/orderly-db.sh stop",
"orderly:restart": "./scripts/orderly-db.sh restart",
"orderly:connect": "./scripts/orderly-db.sh connect",
"orderly:reset": "./scripts/orderly-db.sh reset",
"commitlint": "commitlint --config commitlint.config.js",
"prepare": "husky",
"test": "echo \"No tests specified yet\" && exit 0"
},
"repository": "git@github.com:OrderlyNetworkDexCreator/dex-creator.git",
"author": "Mario Reder <mario@orderly.network>",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/js": "^9.23.0",
"@typechain/ethers-v6": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"concurrently": "^9.1.2",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"husky": "^9.1.7",
"lint-staged": "^16.3.1",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typechain": "^8.3.2",
"typescript": "^5.8.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,html,css,md}": [
"prettier --write"
]
}
}