-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
49
50
51
52
53
54
55
56
57
58
{
"name": "strapi-auth-passwordless",
"repository": {
"type": "git",
"url": "https://bn-digital/bn-digital/strapi-auth-passwordless"
},
"scripts": {
"build": "npx projen build",
"bump": "npx projen bump",
"compile": "npx projen compile",
"default": "npx projen default",
"package": "npx projen package",
"post-compile": "npx projen post-compile",
"pre-compile": "npx projen pre-compile",
"release": "npx projen release",
"unbump": "npx projen unbump",
"projen": "npx projen"
},
"devDependencies": {
"@bn-digital/eslint-config": "^2.0.24",
"@bn-digital/prettier-config": "^2.1.9",
"@bn-digital/projen": "^0.4.18",
"@types/node": "^18",
"lint-staged": "^13.1.0",
"projen": "^0.66.11",
"standard-version": "^9",
"ts-node": "^10.9.1",
"typescript": "4.9.4"
},
"peerDependencies": {
"projen": "^0.66.11"
},
"engines": {
"node": ">= 18.0.0"
},
"main": "lib/index.js",
"license": "UNLICENSED",
"version": "0.0.0",
"types": "lib/index.d.ts",
"prettier": "@bn-digital/prettier-config",
"eslintConfig": {
"extends": "@bn-digital/eslint-config/typescript"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,less,graphql}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.less": [
"stylelint --fix"
]
},
"private": true,
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\".",
"packageManager": "[email protected]"
}