-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.67 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
60
61
62
63
64
65
66
{
"name": "react-actions-tracker",
"version": "1.0.3",
"author": "joaovillas",
"license": "MIT",
"private": false,
"keywords": [
"tracking",
"events",
"react",
"ts",
"amplitude",
"event",
"track"
],
"scripts": {
"build": "npm run test && rollup -c",
"build:watch": "rollup -cw",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"package.json",
"README.md",
"dist"
],
"types": "dist/index.d.ts",
"dependencies": {
"react-intersection-observer": "^9.1.0"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0|| ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0|| ^18.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/jest": "^27.5.1",
"@types/react": "^18.0.9",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rollup": "^2.74.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^28.0.3",
"tslib": "^2.4.0",
"typescript": "^4.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joaovillas/react-actions-tracker.git"
},
"homepage": "https://github.com/joaovillas/react-actions-tracker#readme",
"bugs": {
"url": "https://github.com/joaovillas/react-actions-tracker/issues"
}
}