-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "@b2bfinance/tablo",
"version": "7.0.3",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"description": "Display a list of products",
"sideEffects": false,
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.12.0",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.1",
"@parcel/packager-ts": "2.9.1",
"@parcel/transformer-typescript-types": "2.9.1",
"parcel": "^2.9.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.4",
"tss-react": "^4.8.4",
"prettier": "^2.8.8",
"husky": "^8.0.3",
"lint-staged": "^13.2.2"
},
"peerDependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tss-react": "^4.8.4"
},
"lint-staged": {
"*.{js,jsx,json}": "prettier --write"
},
"author": "Kyle Needham <[email protected]>",
"homepage": "https://github.com/b2bfinance/tablo",
"license": "MIT",
"repository": "https://github.com/b2bfinance/tablo",
"keywords": [
"b2bfinance",
"tablo",
"list"
]
}