-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.92 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
55
56
57
58
59
{
"name": "settings",
"version": "0.0.1",
"description": "Portfolio",
"productName": "Desktop",
"author": "Peng Peng <billpengpeng@gmail.com>",
"private": true,
"scripts": {
"postinstall": "lerna bootstrap",
"bootstrap": "lerna bootstrap",
"app:build": "lerna run build --scope @settings/frontend",
"server:build": "lerna run build --scope @settings/server",
"dev": "lerna run --scope '@settings/{server,frontend}' --parallel dev",
"lint": "eslint --ext .js,.ts,.vue ./",
"format": "prettier --loglevel warn --write \"**/*.{gitignore,js,ts,vue,css,md}\"",
"test": "echo \"No test specified\" && exit 0",
"posttest": "npm run format",
"prepare": "husky install"
},
"dependencies": {
"@bytetrade/core": "0.3.67",
"axios": "^0.21.1"
},
"devDependencies": {
"@types/node": "^12.20.21",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@typescript-eslint/parser": "5.52.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-vue": "^9.0.0",
"husky": "8.0.3",
"lerna": "5.1.8",
"lint-staged": "13.1.2",
"prettier": "^2.5.1",
"ts-node": "10.0.0",
"typescript": "4.4.3"
},
"browserslist": [
"last 10 Chrome versions",
"last 10 Firefox versions",
"last 4 Edge versions",
"last 7 Safari versions",
"last 8 Android versions",
"last 8 ChromeAndroid versions",
"last 8 FirefoxAndroid versions",
"last 10 iOS versions",
"last 5 Opera versions"
],
"engines": {
"node": ">= 12.22.1",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache --fix",
"*.{gitignore,js,ts,vue,css,md}": "prettier --write"
}
}