-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.87 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.87 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
{
"name": "WHEEL",
"version": "2.1.0",
"description": "Scientific Workflow system",
"author": {
"name": "Kenji Ono"
},
"contributors": [
"Tomohiro Kawanabe",
"Kazuya Tsuruta",
"Naoyuki Sogo",
"Yuki Tanaka"
],
"license": "BSD-2-Clause",
"type": "module",
"engines": {
"node": ">=20"
},
"workspaces": [
"server",
"client",
"test"
],
"scripts": {
"start": "cd server; npm start",
"build": "cd client; npm run build",
"lint": "eslint --fix --report-unused-disable-directives ./",
"licenseReport": "run-s licenseReport-doc licenseReport-server licenseReport-client licenseReport-test",
"licenseReport-doc": "license-report --output=csv --csvHeaders --config license-report-config.json",
"licenseReport-server": "license-report --package=server/package.json --output=csv --csvHeaders --config license-report-config.json",
"licenseReport-test": "license-report --package=test/package.json --output=csv --csvHeaders --config license-report-config.json",
"licenseReport-client": "license-report --package=client/package.json --output=csv --csvHeaders --config license-report-config.json",
"prepare": "husky install",
"md-to-pdf": "npx md-to-pdf --stylesheet https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/2.10.0/github-markdown.min.css --body-class markdown-body"
},
"devDependencies": {
"@eslint/js": "^8.57.1",
"@stylistic/eslint-plugin": "^1.8.1",
"eslint-plugin-chai-friendly": "^0.7.4",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-vue": "^9.29.1",
"globals": "^13.24.0",
"husky": "^8.0.3",
"license-report": "^6.7.0",
"lint-staged": "^14.0.1",
"md-to-pdf": "^5.2.4",
"npm-run-all": "^4.1.5",
"vue-eslint-parser": "^9.4.3"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.vue": "eslint --fix"
}
}