-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.3 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
93
94
95
96
97
98
99
100
101
102
{
"name": "roethedev",
"version": "1.0.0",
"description": "Personal website made with JavaScript",
"keywords": [
"nodejs",
"react",
"reactjs",
"parcel",
"javascript"
],
"homepage": "https://github.com/rardoz/roethedev#readme",
"bugs": {
"url": "https://github.com/rardoz/roethedev/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rardoz/roethedev.git"
},
"license": "GPL-3.0-or-later",
"author": "Roe Greene",
"source": "src/index.html",
"scripts": {
"build": "npm run clean && parcel build",
"clean": "rm -rf ./dist | exit",
"dev": "npm run start",
"lint:ci": "npm run lint:ts && npm run lint:js && npm run lint:css",
"lint:css": "stylelint \"**/*.{css,scss}\" --fix",
"lint:css:cli": "stylelint --fix",
"lint:js": "eslint \"**/*.{ts,tsx,js,jsx,json}\" --fix",
"lint:js:cli": "eslint --fix",
"lint:ts": "tsc",
"prepare": "husky install",
"robots": "echo \"User-agent: *\" >> ./dist/robots.txt",
"sitemaps": "rm -rf ./dist/sitemaps && mkdir ./dist/sitemaps && node ./sitemaps/index.js",
"start": "parcel --open",
"test": "jest",
"test:ci": "jest --coverage",
"tokens": "node ./scripts/index-html-tokens/index.js"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"dependencies": {
"@codemirror/lang-javascript": "^6.0.0",
"@contentful/rich-text-react-renderer": "^15.11.1",
"@fortawesome/fontawesome-svg-core": "^6.1.0",
"@fortawesome/free-brands-svg-icons": "^6.1.0",
"@fortawesome/free-regular-svg-icons": "^6.1.0",
"@fortawesome/free-solid-svg-icons": "^6.1.0",
"@fortawesome/react-fontawesome": "^0.1.18",
"classnames": "^2.3.1",
"codemirror": "^6.0.0",
"contentful": "^10.6.7",
"dayjs": "^1.11.0",
"disqus-react": "^1.1.5",
"lint-staged": "^12.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga4": "^1.4.1",
"react-helmet-async": "^1.2.3",
"react-intersection-observer": "^8.33.1",
"react-popper": "^2.2.5",
"react-resize-detector": "^7.0.0",
"react-responsive": "^9.0.0-beta.6",
"react-responsive-carousel": "^3.2.23",
"react-router": "^6.2.2",
"react-router-dom": "^6.2.2",
"use-http": "^1.0.26"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.3.2",
"@testing-library/react": "^12.1.4",
"@types/jest": "^27.4.1",
"@types/parcel-env": "^0.0.1",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"buffer": "^6.0.3",
"contentful-sitemap": "^1.0.20",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"parcel": "^2.3.2",
"prettier": "^2.6.1",
"process": "^0.11.10",
"sitemap": "^7.1.1",
"stylelint": "^14.5.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}