-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.74 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
{
"name": "chat-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.6.9",
"@project-serum/sol-wallet-adapter": "^0.2.0",
"@solana/web3.js": "^1.11.0",
"arweave": "^1.10.14",
"borsh": "^0.4.0",
"buffer-layout": "^1.2.1",
"date-fns": "^2.21.3",
"eventemitter3": "^4.0.7",
"fast-json-stringify": "^2.7.3",
"graphql": "^15.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-modal": "^3.13.1",
"react-scripts": "4.0.3",
"ts-node": "^9.1.1",
"typescript": "^4.3.2",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "PORT=3001 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"wallet:compile": "tsc src/arweave/gen-wallet.ts -esModuleInterop",
"wallet:create": "node src/arweave/gen-wallet",
"build:program": "cargo build-bpf --manifest-path=./program/Cargo.toml --bpf-out-dir=dist/program",
"test:program": "cargo test-bpf --manifest-path=./program/Cargo.toml"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/date-fns": "^2.6.0",
"@types/jest": "^26.0.15",
"@types/node": "^15.0.3",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-modal": "^3.12.0",
"testweave-sdk": "^0.2.2"
}
}