-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 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": "@robertbckly/mpg-calculator",
"version": "1.0.8",
"repository": "[email protected]:robertbckly/fuel-calculator.git",
"author": "Robert Buckley <[email protected]>",
"license": "",
"private": false,
"source": "src/index.html",
"files": [
"dist/*"
],
"scripts": {
"start": "parcel",
"build": "parcel build src/index.tsx --public-url ./",
"build-site": "parcel build --public-url ./",
"test": "jest",
"coverage": "jest --coverage"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.0.11",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.53.0",
"babel-jest": "^29.4.3",
"eslint": "^8.41.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.3.1",
"parcel": "^2.10.3",
"process": "^0.11.10",
"react-test-renderer": "^18.2.0",
"typescript": "^4.9.3"
}
}