-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.6 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
{
"name": "gem5-resources-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:ci": "jest --",
"e2e": "start-server-and-test dev http://localhost:3000 \"cypress open --e2e\"",
"e2e:headless": "start-server-and-test dev http://localhost:3000 \"cypress run --e2e\""
},
"dependencies": {
"bootstrap": "^5.2.3",
"eslint": "8.34.0",
"eslint-config-next": "13.3.0",
"fetch-mock": "^9.11.0",
"fuse.js": "^6.6.2",
"gtag": "^1.0.1",
"html-react-parser": "^3.0.9",
"jsdoc-to-markdown": "^8.0.0",
"next": "^13.4.4",
"nprogress": "^0.2.0",
"raw-loader": "^4.0.2",
"react": "18.2.0",
"react-aria": "^3.22.0",
"react-bootstrap": "^2.7.1",
"react-cookie-consent": "^8.0.1",
"react-dom": "18.2.0",
"react-gapi": "^1.0.2",
"react-markdown": "^8.0.5",
"rehype": "^12.0.1",
"rehype-highlight": "^6.0.0",
"rehype-raw": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-toc": "^8.0.1",
"start-server-and-test": "^2.0.0",
"swr": "^2.0.3"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/bootstrap": "^5.2.6",
"babel-jest": "^29.5.0",
"cypress": "^12.10.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.5.0",
"jest-fetch-mock": "^3.0.3"
}
}