-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "next-cache-tags",
"description": "Active ISR revalidation based on surrogate keys for Next.js",
"version": "0.2.2",
"repository": {
"type": "git",
"url": "https://github.com/lucasconstantino/next-cache-tags.git"
},
"license": "MIT",
"author": "Lucas Constantino Silva",
"main": "dist/commonjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rimraf dist",
"prebuild": "yarn clean",
"build": "yarn build:commonjs && yarn build:esm",
"build:esm": "tsc --module esnext --outDir dist/esm",
"build:commonjs": "tsc --module commonjs --outDir dist/commonjs",
"test": "jest src --silent",
"type-check": "tsc --noEmit",
"code-quality": "yarn test && yarn type-check",
"prepare": "yarn build"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"extract-changelog-release": "^1.0.2",
"jest": "^29.3.1",
"next": "^12.3.0",
"node-mocks-http": "^1.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"redis": "^4.5.0",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"tslib": "^2.4.0",
"typescript": "^4.9.3"
},
"peerDependencies": {
"react": ">=16"
}
}