-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
{
"name": "react-smoothie",
"version": "0.13.1",
"description": "React wrapper for Smoothie Charts",
"author": "Cameron Tacklind <[email protected]>",
"homepage": "https://github.com/cinderblock/react-smoothie#readme",
"license": "ISC",
"bugs": {
"url": "https://github.com/cinderblock/react-smoothie/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cinderblock/react-smoothie.git"
},
"keywords": [
"smoothie",
"chart",
"streaming",
"live",
"realtime",
"jsx",
"tsx",
"react"
],
"main": "SmoothieComponent.js",
"types": "SmoothieComponent.d.ts",
"files": [
"SmoothieComponent.js",
"SmoothieComponent.d.ts",
"example.tsx"
],
"scripts": {
"setup": "install-vscode-extensions",
"dev": "nodemon -w webpack.config.ts -w tsconfig.json -w package.json --exec webpack serve",
"build": "tsc",
"prepare": "npm run build"
},
"dependencies": {
"react": "^17.0.2",
"smoothie": "^1.35.0"
},
"devDependencies": {
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^3.11.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"install-vscode-extensions": "^1.0.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"react-dom": "^17.0.2",
"react-markdown": "^6.0.2",
"ts-loader": "^9.2.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}