-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 941 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 941 Bytes
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
{
"name": "ltl-usage-graph",
"version": "1.0.0",
"private": true,
"description": "ltl-usage-graph",
"author": "Damien R",
"keywords": [
"gatsby"
],
"scripts": {
"get-data": "bash scripts/query_myturn.sh",
"merge-data": "bash scripts/merge_myturn_data.sh",
"clean-data": "python3 scripts/clean_data.py",
"clean-data-gender": "python3 scripts/clean_data_gender.py",
"clean-data-first-use": "python3 scripts/clean_data_users.py",
"remove-data": "rm -f data/*.csv; rm -f data/*.json; rm -f data/*.gz",
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean"
},
"dependencies": {
"chart.js": "^4.4.3",
"gatsby": "^5.13.5",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-csv": "^5.13.1",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0"
}
}