-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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
62
63
64
65
66
67
68
{
"name": "@jlbelanger/glick-app",
"version": "1.0.0",
"description": "Track occurrences of time-based events.",
"license": "GPL-3.0-only",
"author": {
"name": "Jenny Belanger",
"email": "mail@jennybelanger.com",
"url": "https://www.jennybelanger.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/jlbelanger/glick-app.git"
},
"scripts": {
"start": "npx update-browserslist-db@latest && react-scripts start",
"build": "react-scripts build",
"lint": "yarn lint:css && yarn lint:js",
"lint:css": "node_modules/.bin/stylelint 'src/scss/**/*.scss'",
"lint:js": "node_modules/.bin/eslint . --ext .js",
"test": "TZ=America/Los_Angeles node_modules/.bin/jest --watch",
"test:cypress": "TZ=America/Los_Angeles node_modules/.bin/cypress open"
},
"dependencies": {
"@jlbelanger/formosa": "jlbelanger/formosa#1061f96c17116e84f4f781e84e72d712d8623b26",
"@svgr/webpack": "^8.1.0",
"chart.js": "^4.4.7",
"chartjs-adapter-luxon": "^1.3.1",
"chartjs-plugin-zoom": "^2.2.0",
"dotenv": "^16.4.7",
"js-cookie": "^3.0.5",
"luxon": "^3.5.0",
"prop-types": "^15.8.1",
"react": "^19.0.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^19.0.0",
"react-promise-tracker": "^2.1.1",
"react-router-dom": "~5.3.4",
"react-scripts": "^5.0.1",
"sass": "^1.83.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-private-property-in-object": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@stylistic/stylelint-plugin": "^3.1.1",
"cypress": "^13.17.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"jest": "^29.7.0",
"normalize.css": "^8.0.1",
"stylelint": "^16.12.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.10.0"
},
"browserslist": [
"defaults",
"iOS >= 12"
]
}