-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.31 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
{
"name": "sis-importer",
"version": "1.0.0",
"description": "",
"scripts": {
"dco": "./run.sh",
"start": "./run.sh up --scale importer-mankeli=3 && ./run.sh logs -f",
"build": "npm i && npm i --prefix ./importer-api && npm i --prefix ./importer-mankeli && npm i --prefix ./importer-db-api && ./run.sh build",
"test": "npm test --prefix ./importer-api && npm test --prefix ./importer-mankeli && npm test --prefix ./importer-db-api",
"reset": "./run.sh morning",
"restart": "./run.sh morning && npm start",
"eslint": "eslint",
"lint:all": "eslint .",
"lintfix:all": "eslint --fix .",
"prepare": "husky"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/UniversityOfHelsinkiCS/sis-importer.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/UniversityOfHelsinkiCS/sis-importer/issues"
},
"homepage": "https://github.com/UniversityOfHelsinkiCS/sis-importer#readme",
"devDependencies": {
"@eslint/js": "^9.19.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.4.2"
}
}