-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
106 lines (106 loc) · 2.85 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "mobland-website",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "A simple website for mob.land",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/superpowerlabs/mobland-website.git"
},
"author": "Francesco Sullo <[email protected]>",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@ethersproject/contracts": "^5.1.1",
"@mui/material": "^5.11.7",
"@mui/system": "^5.11.7",
"@superpowerlabs/salus": "0.1.0-beta.1",
"body-parser": "^1.19.0",
"bootstrap": "^5.3.0",
"chalk": "^2.4.2",
"cli-spinner": "^0.2.10",
"compression-webpack-plugin": "^10.0.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^9.0.2",
"ethereumjs-util": "^7.0.10",
"ethers": "^5.5.2",
"express": "^4.17.1",
"express-static-gzip": "^2.1.7",
"file-loader": "^6.2.0",
"fs-extra": "^8.1.0",
"knex": "^2.4.2",
"local-storage": "^1.4.2",
"lodash": "^4.17.21",
"prop-types": "^15.8.0",
"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-device-detect": "^2.1.2",
"react-dom": "^18.2.0",
"react-markdown-it": "^1.0.2",
"react-router-dom": "^5.3.3",
"simple-json-db": "^1.2.3",
"superagent": "^4.1.0",
"video-react": "^0.16.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@vitejs/plugin-react": "^4.0.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"chai": "^4.3.7",
"css-loader": "^3.6.0",
"enzyme": "^3.11.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.32.2",
"glob": "^9.3.2",
"husky": "^8.0.0",
"jest": "^29.5.0",
"mocha": "^8.3.2",
"prettier": "2.5.1",
"pretty-quick": "^3.1.3",
"react-test-renderer": "^18.2.0",
"regenerator-runtime": "^0.13.11",
"style-loader": "^3.3.1",
"supertest": "^6.3.3",
"vite": "^4.3.7",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-node-polyfills": "^0.8.2"
},
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"format": "npx prettier --write .",
"prepare": "husky install",
"postinstall": "bin/post-install.sh",
"test": "npm run test:server; npm run test:client -- --watchAll=false",
"test:server": "mocha --exit",
"test:client": "echo 'No client tests yet'"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=16.0.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}