-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
56 lines (56 loc) · 1.88 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
{
"name": "yice-performance",
"version": "2.1.2",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"build-test": "turbo run build-test",
"build:docker": "sh docker/build.sh",
"release": "node ./scripts/release.js",
"deploy": "zx scripts/deploy.mjs",
"deploy-test": "npm run deploy test",
"fileSize": "node ./scripts/report-fileSize.js",
"prettier": "npx prettier \"**/*.ts\" \"**/*.tsx\" \"**/*.js\" \"**/*.json\" --check",
"prettier:fix": "npx prettier \"**/*.ts\" \"**/*.tsx\" \"**/*.js\" \"**/*.json\" --write",
"eslint": "npx eslint \"{apps,test}/**/*.ts\" \"{apps,test}/**/*.tsx\"",
"eslint:fix": "npx eslint \"{apps,test}/**/*.ts\" \"{apps,test}/**/*.tsx\" --fix",
"stylelint": "npx stylelint '**/*.less' '**/*.css'",
"stylelint:fix": "npx stylelint '**/*.less' '**/*.css' --fix",
"test": "cd apps/server && npm run test",
"check-types": "tsc --skipLibCheck"
},
"dependencies": {
"echarts": "^5.5.0",
"lodash": "^4.17.21",
"moment": "2.29.4"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.22.0",
"eslint-plugin-prettier": "4.2.1",
"inquirer": "8.2.6",
"ko-lint-config": "2.2.21",
"prettier": "2.7.1",
"stylelint": "14.11.0",
"ts-loader": "^9.2.3",
"tsconfig-paths": "4.1.1",
"turbo": "^2.0.3",
"typescript": "4.7.4",
"webpack": "^5.0.0",
"zx": "^8.1.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14"
}
}