-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 876 Bytes
/
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
{
"name": "react-chart",
"version": "1.0.0",
"description": "Experiment using chart.js with react.",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "parcel index.html"
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"jest": "^23.2.0",
"parcel-bundler": "^1.6.2"
},
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-class-properties",
"transform-object-rest-spread"
]
},
"dependencies": {
"chart.js": "^2.7.2",
"date-fns": "^1.29.0",
"lodash": "^4.17.10",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-chartjs-2": "^2.7.2",
"react-dom": "^16.4.1",
"styled-components": "^3.3.3"
}
}