-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.6 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
59
{
"name": "use-phoenix",
"version": "0.0.3",
"description": "React hooks for the Phoenix Framework",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Jdyn/use-phoenix.git"
},
"scripts": {
"clean": "rm -rf dist",
"build:dev": "npm run clean && rollup -c",
"build:prod": "rollup -c --environment BUILD:production",
"test": "jest",
"format": "eslint --fix --ext .ts,.tsx ."
},
"author": "Jaden Moore",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/phoenix": "^1.6.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"eslint": "^9.9.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^6.0.1",
"rollup": "^4.20.0",
"rollup-plugin-copy": "^3.5.0",
"ts-jest": "^29.2.4",
"tslib": "^2.6.3",
"typescript": "^5.5.4"
},
"peerDependencies": {
"react": ">= 16.8.0",
"phoenix": ">= 1.7.0"
}
}