-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.54 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
{
"name": "@significa/auth-next",
"description": "Auth-related functions to handle access and refresh tokens in NextJS projects",
"version": "0.0.1-development",
"repository": "github:significa/significa-auth-next",
"publishConfig": {
"access": "public"
},
"author": "Significa <development@significa.co>",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"files": [
"/lib"
],
"license": "MIT",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier": "prettier \"src/**/*.+(ts|tsx|js|jsx|json|yml|yaml|md|mdx)\" --write",
"validate:types": "tsc --noEmit",
"test": "jest src"
},
"peerDependencies": {
"next": "^12.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@significa/eslint-config": "^2.0.1",
"@significa/prettier-config": "^2.0.0",
"@significa/tsconfig-config": "^2.0.0",
"@types/jest": "^29.2.4",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"eslint": "^8.21.0",
"husky": "^8.0.1",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"next": "^12.2.5",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.0.3",
"typescript": "4.7.4"
}
}