-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.86 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.86 KB
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
{
"name": "react-blueprint",
"private": true,
"version": "2.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/jarntz/react.git"
},
"homepage": "./",
"author": "Jordy Arntz",
"scripts": {
"dev": "vite --port 3000",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-brands-svg-icons": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@vitejs/plugin-react": "^3.1.0",
"aos": "^2.3.4",
"axios": "^1.3.4",
"dotenv": "^16.0.3",
"framer-motion": "^10.9.1",
"moment": "^2.29.4",
"moment-timezone": "^0.5.42",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-moment": "^1.1.3",
"react-router-dom": "^6.9.0",
"vite": "^4.2.1",
"vite-plugin-svgr": "^2.4.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.14",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.5",
"stylelint": "^15.3.0",
"stylelint-config-standard": "^31.0.0",
"stylelint-prettier": "^3.0.0",
"tailwindcss": "^3.2.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}