-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.9 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.9 KB
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
67
68
69
70
71
72
73
{
"author": "Parra",
"name": "@parra/react-sdk",
"version": "1.6.1",
"description": "Parra SDK for React Single Page Applications (SPA)",
"keywords": [],
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"release": "npm run clean && npm run build && npm publish --access public",
"build": "tsup src/index.tsx --format cjs,esm --dts",
"lint": "echo 'Linting is disabled for now'",
"test": "jest --coverage"
},
"packageManager": "npm@10.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Parra-Inc/parra-react-sdk.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Parra-Inc/parra-react-sdk/issues"
},
"homepage": "https://github.com/Parra-Inc/parra-react-sdk#readme",
"devDependencies": {
"@babel/core": "^7.18.2",
"@swc/core": "^1.11.16",
"@types/jest": "^29.5.14",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.1",
"babel-loader": "^10.0.0",
"babel-preset-react-app": "^10.0.1",
"browserstack-cypress-cli": "^1.1.2",
"codecov": "^3.8.2",
"cypress": "^14.2.1",
"globals": "^16.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.5.3",
"pretty-quick": "^4.1.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-test-renderer": "^19.1.0",
"sass-loader": "^16.0.5",
"start-server-and-test": "^2.0.11",
"ts-jest": "^29.3.1",
"tslib": "^2.8.1",
"tsup": "^8.4.0",
"turbo": "^2.4.4",
"typescript": "^5.8.2"
},
"peerDependencies": {
"react": "^19",
"react-dom": "^19"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@parra/http-client": "^0.7.0",
"clsx": "^2.1.0"
}
}