-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
65 lines (65 loc) · 2.09 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
{
"name": "intelligentquantum.github.io",
"homepage": "https://intelligentquantum.github.io/",
"author": {
"name": "IntelligentQuantum",
"email": "IntelligentQuantum@ProtonMail.Com",
"url": "https://intelligentquantum.github.io/"
},
"version": "3.0.0",
"private": true,
"scripts": {
"test": "jest --watch",
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"prepare": "husky install",
"lint": "next lint",
"lint:scss": "stylelint --fix \"src/**/*.scss\" --custom-syntax postcss-scss",
"lint:scss:fix": "npm run lint:scss -- --fix"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.5",
"@tippyjs/react": "^4.2.6",
"axios": "^1.3.6",
"classnames": "^2.3.2",
"github-markdown-css": "^5.2.0",
"gray-matter": "^4.0.3",
"lru-cache": "^9.1.0",
"next": "^13.3.1",
"next-translate": "^2.0.5",
"postcss-scss": "^4.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-markdown": "^8.0.7",
"react-redux": "^8.0.5",
"react-spring": "^9.7.1",
"react-syntax-highlighter": "^15.5.0",
"redux-logger": "^3.0.6",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"sass": "^1.62.0",
"sharp": "^0.32.0",
"swiper": "^9.2.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/node": "^18.15.13",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.0.11",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/redux-logger": "^3.0.9",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"next-translate-plugin": "^2.0.5",
"stylelint": "^15.5.0",
"stylelint-config-standard": "^33.0.0",
"typescript": "^5.0.4"
}
}