-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "kunlun-market",
"version": "1.0.0",
"author": "yunfeng",
"license": "MIT",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"prepare": "husky install",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"dev:admin": "yarn workspace admin dev",
"dev:frontend": "yarn workspace frontend dev",
"dev:backend": "yarn workspace backend dev",
"test": "turbo run test",
"pre-commit": "yarn lint-staged && turbo run test",
"test:ui": "yarn workspace ui test",
"lint:ui": "yarn workspace ui lint",
"lint:admin": "yarn workspace admin lint"
},
"dependencies": {
"eslint-config-turbo": "latest"
},
"devDependencies": {
"turbo": "^1.9.3",
"eslint": "^8.23.0",
"prettier": "^2.7.1",
"eslint-config-react": "*",
"eslint-config-custom": "*",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"tsconfig": "*"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"printWidth": 120,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5"
}
}