-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 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
{
"name": "cf",
"version": "0.1.0",
"description": "Codeforces Dashboard",
"homepage": "https://rohitkaushal7.github.io/cf",
"author": {
"name": "Rohit Kaushal",
"url": "https://www.github.com/RohitKaushal7"
},
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.html --public-url ./",
"deploy": "gh-pages -d dist"
},
"license": "MIT",
"dependencies": {
"input.css": "0.0.4",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-router-dom": "^5.1.2",
"react-uuid": "^1.0.2",
"recharts": "^1.8.5"
},
"devDependencies": {
"gh-pages": "^2.2.0",
"@babel/core": "^7.5.5",
"@babel/compat-data": "7.10.5",
"@babel/plugin-transform-runtime": "7.10.5",
"babel-preset-nano-react-app": "^0.1.0",
"@babel/runtime": "7.10.5",
"parcel-bundler": "^1.12.3",
"sass": "^1.26.3"
},
"babel": {
"presets": [
"nano-react-app"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
[
"@babel/plugin-transform-react-jsx",
{
"pragmaFrag": "React.Fragment"
}
]
]
}
}