-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
87 lines (87 loc) · 2.67 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
{
"private": true,
"name": "solana-leetdroid",
"version": "0.1.0",
"dependencies": {
"@project-serum/anchor": "^0.23.0",
"@solana/wallet-adapter-base": "^0.9.5",
"@solana/wallet-adapter-react": "^0.15.4",
"@solana/wallet-adapter-react-ui": "^0.9.6",
"@solana/wallet-adapter-wallets": "^0.15.5",
"@solana/web3.js": "^1.36.0",
"@typegoose/typegoose": "^9.7.1",
"@types/mocha": "^9.1.0",
"apollo-server-core": "^3.6.6",
"apollo-server-express": "^3.6.6",
"axios": "^0.26.1",
"bootstrap": "^5.1.3",
"class-validator": "^0.13.2",
"dayjs": "^1.11.0",
"dom-to-image": "^2.6.0",
"express": "^4.17.3",
"file-saver": "^2.0.5",
"graphql": "^15.3.0",
"moment": "^2.29.1",
"mongoose": "^6.2.8",
"patch-package": "^6.4.7",
"react": "^17.0.2",
"react-bootstrap": "^2.2.3",
"react-component-export-image": "^1.0.6",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.2",
"react-toastify": "^8.2.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"use-http": "1.0.26",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/chai": "^4.3.0",
"@types/express": "github:types/express",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"mocha": "^9.2.2",
"nodemon": "^2.0.15",
"process": "^0.11.10",
"react-app-rewired": "^2.2.1",
"react-scripts": "^5.0.0",
"source-map-loader": "^3.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"build:program-rust": "cargo build-bpf --manifest-path=./program-rust/Cargo.toml",
"postinstall": "patch-package"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"no-unused-vars": "warn"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}