-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1021 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1021 Bytes
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
{
"name": "@peerigon/template",
"version": "1.0.0",
"description": "Boilerplate template to kick start new projects at Peerigon",
"keywords": [],
"license": "MIT License",
"author": "hello@peerigon.com",
"type": "module",
"scripts": {
"prepare": "husky",
"test": "run-p test:*",
"test:format": "prettier --check .",
"test:lint": "eslint --max-warnings 0 --cache .",
"test:types": "tsc",
"test:unit": "vitest --run",
"vitest": "vitest"
},
"dependencies": {
"env-var": "^7.5.0"
},
"devDependencies": {
"@peerigon/configs": "^15.4.0",
"@secretlint/secretlint-rule-preset-recommend": "^12.2.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"npm-run-all2": "^8.0.4",
"pin-github-action": "^3.4.0",
"prettier": "^3.8.3",
"secretlint": "^12.2.0",
"typescript": "^5.9.3",
"typescript-language-server": "^5.1.3",
"vitest": "^4.1.5"
}
}