-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.36 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "jlurena.me",
"version": "1.0",
"author": {
"name": "Jean Luis Urena",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/jlurena/jlurena.me"
},
"private": false,
"description": "Personal website for Jean Luis Urena",
"license": "UNLICENSED",
"engines": {
"npm": "^9.0.0",
"node": "^20.0"
},
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "npx standard --fix && npx stylelint \"**/*.scss\" --fix",
"serve": "npx serve -s build",
"start": "react-scripts start",
"test": "react-scripts test",
"test-coverage": "npm test -- --coverage ."
},
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"cubic-bezier": "^0.1.2",
"fontawesome": "^5.6.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-image-gallery": "^1.2.8",
"react-scripts": "5.0.1",
"sass": "^1.63.6",
"workbox-background-sync": "^6.6.0",
"workbox-broadcast-update": "^6.6.0",
"workbox-cacheable-response": "^6.6.0",
"workbox-core": "^6.6.0",
"workbox-expiration": "^6.6.0",
"workbox-google-analytics": "^6.6.0",
"workbox-navigation-preload": "^6.6.0",
"workbox-precaching": "^6.6.0",
"workbox-range-requests": "^6.6.0",
"workbox-routing": "^6.6.0",
"workbox-strategies": "^6.6.0",
"workbox-streams": "^6.6.0"
},
"devDependencies": {
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"nyc": "^15.1.0",
"react-test-renderer": "^18.2.0",
"serve": "^14.2.0",
"standard": "^17.1.0",
"style-loader": "^3.3.1",
"stylelint": "^15.10.1",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not IE 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}