generated from tpluscode/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "web-access-control",
"private": true,
"scripts": {
"lint": "eslint . --ext .ts --quiet --ignore-path .gitignore",
"test": "wsrun -mc test",
"prepare": "husky install",
"release": "changeset publish"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@tpluscode/eslint-config": "^0.4.5",
"@types/chai": "^4.2.15",
"@types/clownface": "^2.0.7",
"@types/express": "^4.17.11",
"@types/http-errors": "^2.0.4",
"@types/mocha": "^10.0.6",
"@types/node": "^18",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.5",
"@types/sparql-http-client": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"c8": "^7.7.0",
"eslint-import-resolver-typescript": "^3.6.1",
"husky": "^6.0.0",
"lint-staged": "^15.2.2",
"sinon-chai": "^3.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"wsrun": "^5.2.4"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
}
}