-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.51 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
{
"name": "custom-widget-boilerplate",
"version": "1.0.0",
"private": true,
"description": "Boilerplate for TagoIO Custom Widgets in TypeScript",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html --public-url /Profile-ID-Here/storage/Custom-widget-folder-here",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/",
"check:types": "tsc --noEmit"
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"author": "Tago LLC",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@types/jest": "29.2.4",
"@types/luxon": "^3.4.2",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"buffer": "^5.7.1",
"eslint": "8.29.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.7",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "29.3.1",
"parcel": "2.8.2",
"prettier": "2.8.1",
"process": "^0.11.10",
"ts-jest": "29.0.3",
"typescript": "4.9.4"
},
"dependencies": {
"@tago-io/custom-widget": "1.1.0",
"echarts": "^5.5.1",
"luxon": "^3.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"tslib": "2.4.1"
}
}