-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.13 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
{
"name": "plutus-fe",
"homepage": "https://plutus.nyxordinal.dev/",
"version": "1.0.0",
"description": "Plutus - Your free online companion for easy daily expense management",
"repository": "https://github.com/nyxordinal/plutus-fe",
"license": "MIT",
"scripts": {
"start": "next start",
"build": "NODE_OPTIONS=--openssl-legacy-provider next build",
"lint": "next lint",
"dev": "NODE_OPTIONS=--openssl-legacy-provider next dev",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && yarn install && npm run build:tailwind && npm run dev",
"build:tailwind": "tailwind build src/styles/index.css -o src/styles/tailwind.css",
"format": "prettier --write \"**/*.{js,ts,tsx}\"",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fortawesome/fontawesome-free": "^5.15.3",
"@mui/material": "^5.13.5",
"@popperjs/core": "2.9.1",
"@reduxjs/toolkit": "^1.9.0",
"@tailwindcss/forms": "0.2.1",
"axios": "^1.1.3",
"chart.js": "2.9.4",
"gulp": "4.0.2",
"gulp-append-prepend": "1.0.8",
"js-cookie": "^3.0.1",
"next": "11",
"node-rsa": "^1.1.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-scripts": "4.0.3",
"tailwindcss": "2.0.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.4.6",
"@types/chart.js": "^2.9.37",
"@types/js-cookie": "^3.0.2",
"@types/node": "^18.11.9",
"@types/node-rsa": "^1.1.1",
"@types/prop-types": "^15.7.5",
"@types/react": "18.0.1",
"@types/react-dom": "^18.0.9",
"autoprefixer": "10.2.5",
"eslint": "^7.32.0",
"eslint-config-next": "11.1.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"postcss": "8.2.8",
"prettier": "^2.8.8",
"typescript": "^4.4.3"
}
}