This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.15 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@sort/react-components",
"version": "0.1.2",
"description": "React components for Sort",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "NODE_ENV=production BABEL_ENV=production rollup -c",
"lint": "eslint './src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix './src/**/*.{js,jsx,ts,tsx}'",
"prepublishOnly": "npm run build",
"prepare": "husky install",
"semantic-release": "semantic-release",
"test": "cross-env NODE_ENV=test jest",
"test:clear": "cross-env NODE_ENV=test jest --clearCache",
"test:cov": "npm run test -- --coverage",
"test:watch": "npm run lint:fix && cross-env NODE_ENV=test jest --watchAll",
"test:watch-without-lint-fix": "cross-env NODE_ENV=test jest --watchAll"
},
"browser": {
"child_process": false,
"fs": false
},
"np": {
"publish": false,
"tests": false
},
"author": "Jason Zucchetto",
"license": "Apache-2.0",
"dependencies": {
"gsap": "3.12.2",
"pusher-js": "8.2.0",
"react-data-grid": "7.0.0-beta.34",
"tslib": "2.6.0"
},
"devDependencies": {
"@babel/core": "7.22.6",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-transform-runtime": "7.22.6",
"@babel/preset-env": "7.22.6",
"@babel/preset-react": "7.22.5",
"@babel/preset-typescript": "7.22.5",
"@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.6",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "25.0.2",
"@rollup/plugin-node-resolve": "15.1.0",
"@rollup/plugin-terser": "0.4.3",
"@rollup/plugin-url": "8.0.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.5.2",
"@types/node": "20.3.3",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"cross-env": "7.0.3",
"deep-equal": "2.2.1",
"eslint": "8.44.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"javascript-time-ago": "2.5.9",
"jest": "29.6.0",
"jest-environment-jsdom": "29.6.0",
"jest-fetch-mock": "3.0.3",
"lint-staged": "13.2.3",
"postcss": "8.4.24",
"prettier": "2.8.8",
"rollup": "3.26.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-typescript2": "0.35.0",
"semantic-release": "21.0.7",
"ts-jest": "29.1.1",
"typescript": "5.1.6"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"repository": "git@github.com:sortxyz/react-components.git",
"bugs": {
"url": "https://github.com/sortxyz/react-components/issues"
},
"homepage": "https://github.com/sortxyz/react-components",
"release": {
"branches": ["main"]
}
}