-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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
{
"name": "@mahdi_ag/rgrid",
"version": "0.1.3",
"description": "A responsive grid component for React",
"source": "src/index.tsx",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"repository": "[email protected]:MahdiAghaei1/rgrid.git",
"author": "Mahdi Aghaei <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@parcel/packager-ts": "2.5.0",
"@parcel/transformer-sass": "2.5.0",
"@parcel/transformer-typescript-types": "2.5.0",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"babel-jest": "^28.1.1",
"eslint": "^8.15.0",
"eslint-plugin-react": "^7.30.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"mprocs": "^0.2.3",
"parcel": "^2.5.0",
"prettier": "^2.6.2",
"react-test-renderer": "^18.2.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"clsx": "^1.1.1",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"scripts": {
"build": "parcel build",
"watch": "parcel watch",
"dev": "mprocs",
"lint": "eslint src",
"test": "jest tests --watch"
}
}