generated from github-education-resources/codespaces-project-template-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.69 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
{
"name": "huixin-portfolio",
"version": "1.0.0",
"description": "Introduction of Huixin's Portfolio",
"source": "src/index.html",
"homepage": "https://github.com/HUIXIN-TW/Portfolio#readme",
"scripts": {
"start": "parcel",
"build": "parcel build",
"build-gh": "parcel build src/index.html --public-url 'https://huixin-tw.github.io/Portfolio/'",
"predeploy": "npm run build-gh",
"deploy": "gh-pages -d dist",
"lint:strict": "eslint . --ext .js,.jsx",
"format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/HUIXIN-TW/Portfolio.git"
},
"author": "Huixin",
"license": "ISC",
"bugs": {
"url": "https://github.com/HUIXIN-TW/Portfolio/issues"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.33",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.0",
"styled-components": "^6.1.8",
"tailwindcss": "^3.4.1"
},
"devDependencies": {
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.7",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"parcel": "^2.7.0",
"prettier": "^2.7.1",
"process": "^0.11.10"
},
"postcss": {
"plugins": {
"tailwindcss": {}
}
}
}