This repository has been archived by the owner on Oct 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
92 lines (92 loc) · 2.72 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
90
91
92
{
"name": "developer-portfolio-app",
"version": "2.0.0",
"description": "VS Code/Atom One Dark inspired developer portfolio app.",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/caglarturali/caglarturali.github.io"
},
"homepage": "https://turali.js.org",
"license": "GNU GPLv3",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test:base": "react-scripts test --passWithNoTests",
"test": "npm run test:base -- --watchAll=false",
"test:watch": "npm run test:base -- --watchAll",
"test:update": "npm run test:base -- --updateSnapshot --forceExit",
"eject": "react-scripts eject",
"lint": "eslint \"*/**/*.{js,ts,tsx}\"",
"lint:ci": "npm run lint -- --quiet",
"lint:fix": "npm run lint -- --fix",
"progress": "ts-node -O '{\"module\":\"commonjs\"}' scripts/updateProgress.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"@reach/router": "^1.3.4",
"clsx": "^1.1.1",
"color": "^3.2.1",
"dayjs": "^1.10.7",
"dotenv": "^8.6.0",
"isomorphic-unfetch": "^3.1.0",
"normalize.css": "^8.0.1",
"react": "^16.14.0",
"react-circular-progressbar": "^2.0.4",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-jss": "^10.8.2",
"react-markdown": "^4.3.1",
"react-scripts": "3.4.1",
"react-tooltip": "^4.2.21",
"typed.js": "^2.0.12"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^10.4.9",
"@testing-library/user-event": "^12.8.3",
"@types/color": "^3.0.2",
"@types/jest": "^25.2.3",
"@types/node": "^14.17.32",
"@types/reach__router": "^1.3.9",
"@types/react": "^16.14.20",
"@types/react-dom": "^16.9.14",
"@types/react-helmet": "^5.0.19",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.26.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.4.1",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.8",
"typescript": "^3.9.10"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}