-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "thornton",
"version": "0.1.0",
"description": "Alice Thornton's Books research project",
"homepage": "https://github.com/kingsdigitallab/thornton#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kingsdigitallab/thornton.git"
},
"author": "King's Digital Lab",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/kingsdigitallab/thornton/issues"
},
"scripts": {
"serve": "npm run serve -w frontend",
"rebuild": "npm ci && npm run rebuild:full -w frontend",
"lint": "eslint **/_includes/",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier . --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"test": "npm run test --workspaces --if-present",
"tei2html": "gh workflow run 46601457"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"@babel/eslint-plugin": "^7.17.7",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.2",
"prettier-plugin-sort-imports": "^1.7.0",
"simple-git-hooks": "^2.8.0",
"vscode-langservers-extracted": "^4.2.1",
"watch": "^1.0.2"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"workspaces": [
"frontend",
"osnap",
"tests",
"apps/dtsserver",
"apps/dtsviewer",
"apps/dtsstaticgen"
]
}