This repository was archived by the owner on Sep 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.2 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
69
{
"name": "rigami-landing",
"private": true,
"version": "2.0.0",
"description": "Landing page for rigami project",
"main": "index.js",
"repository": "https://github.com/rigami/landing",
"author": "Danilkinkin",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build:analyze": "ANALYZE=true next build",
"build": "next build",
"start": "next start",
"lint": "eslint --fix --ext .jsx,.js,.json --ignore-path .gitignore ."
},
"resolutions": {
"webpack": "^5.24.2"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"blurhash": "^1.1.3",
"clsx": "^1.1.1",
"html-to-react": "^1.4.5",
"lodash": "^4.17.21",
"mobx": "^6.1.7",
"mobx-react": "^7.1.0",
"next": "^10.0.7",
"next-i18next": "^8.0.2",
"nprogress": "^0.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-resize-detector": "^6.6.0",
"react-share": "^4.4.0"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/eslint-parser": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-syntax-throw-expressions": "^7.12.13",
"@babel/plugin-transform-react-jsx": "^7.12.17",
"@babel/preset-env": "^7.13.8",
"@babel/preset-react": "^7.12.13",
"@babel/traverse": "^7.13.0",
"@babel/types": "^7.13.0",
"@next/bundle-analyzer": "^10.0.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "^7.21.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-react-tools": "^1.1.7",
"eslint-config-rigami": "rigami/eslint-config-rigami",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-flowtype": "^5.3.1",
"file-loader": "^6.2.0",
"img-optimize-loader": "^1.0.7",
"next-compose-plugins": "^2.2.0",
"react-svg-loader": "^3.0.3",
"webpack-bundle-analyzer": "^4.4.0"
},
"packageManager": "yarn@3.2.4"
}