-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.26 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
{
"name": "hicsail.github.io",
"version": "1.0.0",
"description": "Official web presence of the Software & Application Innovation Lab, operated within the Hariri Institute for Computing and Computational Science and Engineering at Boston University.",
"scripts": {
"start": "webpack serve --mode development --watch",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hicsail/hicsail.github.io"
},
"dependencies": {
"@chakra-ui/icons": "2.1.1",
"@chakra-ui/react": "2.8.1",
"@emailjs/browser": "3.9.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "11.3.0",
"css-loader": "^6.8.1",
"d3": "7.6.1",
"framer-motion": "4.1.17",
"prop-types": "15.7.2",
"react": "18.2.0",
"react-awesome-reveal": "^4.2.5",
"react-chartjs-2": "^5.2.0",
"react-circular-progressbar": "^2.1.0",
"react-device-detect": "2.2.3",
"react-dom": "18.2.0",
"react-hook-form": "7.46.1",
"react-icons": "4.2.0",
"react-interactive": "1.1.0",
"react-router-dom": "6.16.0",
"react-router-hash-link": "2.4.3",
"style-loader": "^3.3.3",
"styled-components": "5.3.0",
"use-count-up": "^3.0.1"
},
"devDependencies": {
"@types/d3": "7.4.0",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@types/react-router-dom": "5.1.7",
"@types/react-router-hash-link": "2.4.1",
"@types/styled-components": "5.1.9",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"eslint": "7.25.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"prettier": "3.0.3",
"source-map-loader": "4.0.1",
"terser-webpack-plugin": "5.3.9",
"ts-loader": "9.4.4",
"typescript": "5.2.2",
"webpack": "5.88.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*": "prettier --write --ignore-unknown"
}
}