-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.24 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
{
"name": "crypto-balance",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Drarig29/crypto-balance.git"
},
"description": "A web application to show charts and graphs of your crypto balance",
"main": "frontend/index.js",
"scripts": {
"build:backend": "cargo build",
"build:frontend": "node esbuild.js",
"build": "cargo build && node esbuild.js",
"dev": "node esbuild.js --dev",
"lint": "eslint --ext '.js,.jsx' frontend",
"lint:fix": "npm run lint -- --fix",
"start": "cargo run"
},
"author": "Corentin Girard <[email protected]>",
"license": "ISC",
"dependencies": {
"esbuild": "^0.13.4",
"moment": "^2.29.1",
"rainbowvis.js": "^1.0.1",
"react": "^17.0.2",
"react-day-picker": "^7.4.10",
"react-dom": "^17.0.2",
"recharts": "^2.1.4"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"eslint": "^7.32.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1"
}
}