-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 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
{
"name": "@openformation/logto-remix",
"version": "1.0.0-beta.1",
"description": "Logto Remix SDK",
"author": {
"name": "Open Formation GmbH",
"email": "[email protected]",
"url": "https://openformation.io"
},
"license": "See LICENSE",
"main": "./dist/index.js",
"scripts": {
"bootstrap": "./scripts/bootstrap",
"clean": "./scripts/clean",
"compile": "./scripts/compile",
"compile:watch": "./scripts/compile:watch",
"powerwash": "./scripts/powerwash",
"test": "./scripts/test"
},
"lint-staged": {
"./**/*.{ts,tsx,js,json,css,md}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@logto/node": "^1.0.0-beta.8"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^29.1.2",
"@types/node": "^18.8.3",
"husky": "^8.0.1",
"jest": "^29.1.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"@swc/core": "^1.3.5",
"@swc/jest": "^0.2.23",
"typescript": "^4.8.4"
},
"peerDependencies": {
"@remix-run/node": "^1.7.2"
}
}