-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.11 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
{
"name": "react-portfolio",
"version": "0.1.0",
"description": "",
"repository": "github:jprusik/react-portfolio",
"author": {
"name": "Jonathan Prusik",
"email": "[email protected]",
"url": "https://jonathanprusik.com"
},
"bugs": {
"url": "https://github.com/jprusik/react-portfolio/issues"
},
"license": "MIT",
"private": true,
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"lodash": "^4.17.21",
"react-app-polyfill": "^0.2.2",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"react": "^18.2.0",
"typeface-alegreya-sans-sc": "^0.0.54",
"typeface-aleo": "^0.0.69",
"typeface-ubuntu-condensed": "^0.0.72",
"typeface-ubuntu-mono": "^0.0.72",
"typescript": "^4.9.4",
"update": "^0.7.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.185",
"@types/node": "^18.11.18",
"@types/react-dom": "^18.0.10",
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"json-loader": "^0.5.7",
"node-sass": "^7.0.3"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"scripts": {
"start": ". ./src/content/.env && react-scripts start",
"build": ". ./src/content/.env && react-scripts build && cp ./src/content/favicon.ico ./build/favicon.ico ; cp ./src/content/manifest.json ./build/manifest.json",
"deploy": "./src/content/deploy.sh",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint ./src --ext .js --ext .jsx --ext .ts --ext .tsx"
}
}