-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "babel-plugin-react-query-key-gen",
"version": "0.4.1",
"main": "dist/index.js",
"author": "Dominic Lee",
"scripts": {
"test": "jest",
"build": "esbuild src/index.ts --bundle --platform=node --target=node10 --outfile=dist/index.js",
"build:watch": "esbuild src/index.ts --bundle --platform=node --target=node10 --watch --outfile=dist/index.js"
},
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/traverse": "^7.12.17",
"@babel/types": "^7.12.17",
"@types/babel__traverse": "^7.11.0",
"babel-plugin-tester": "^10.0.0",
"esbuild": "^0.8.50",
"jest": "^26.6.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-query": "^3.9.8",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dominictwlee/babel-plugin-react-query-key-gen.git"
},
"engines": {
"node": ">=10",
"npm": ">=6"
},
"dependencies": {
"nanoid": "^3.1.20"
}
}