-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@popperjs/core": "^2.11.0",
"@project-serum/sol-wallet-adapter": "^0.2.6",
"@reduxjs/toolkit": "^1.5.1",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.31.0",
"@tailwindcss/forms": "^0.4.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"arweave": "^1.10.18",
"chart.js": "^2.9.4",
"gulp": "^4.0.2",
"gulp-append-prepend": "^1.0.9",
"history": "^5.1.0",
"postcss": "^8.4.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dotenv": "^0.1.3",
"react-dropzone-uploader": "^2.11.0",
"react-redux": "^7.2.3",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.3",
"react-select-search": "^3.0.9",
"react-toastify": "^8.1.0",
"redux-logger": "^3.0.6",
"tailwindcss": "^3.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm run build:tailwind && npm start",
"build:tailwind": "tailwind build src/assets/styles/index.css -o src/assets/styles/tailwind.css"
},
"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"
]
}
}