forked from solana-labs/example-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.07 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
{
"name": "token",
"version": "0.0.1",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/solana-labs/example-token"
},
"testnetDefaultChannel": "v1.1.8",
"scripts": {
"start": "babel-node src/cli/main.js",
"lint": "npm run pretty && eslint .",
"lint:fix": "npm run lint -- --fix",
"flow": "flow",
"flow:watch": "watch 'flow' . --wait=1 --ignoreDirectoryPattern=/doc/",
"lint:watch": "watch 'npm run lint:fix' . --wait=1",
"bpf-sdk:update": "solana-bpf-sdk-install node_modules/@solana/web3.js && npm run clean:progam",
"build:program": "./src/program/do.sh build",
"clean:program": "./src/program/do.sh clean && cargo clean --manifest-path ./src/program-test/Cargo.toml",
"test:program": "./src/program/do.sh test",
"bench:program": "npm run build:program && cargo test --manifest-path ./src/program-test/Cargo.toml -- --nocapture",
"cluster:localnet": "rm -f .env",
"cluster:devnet": "cp cluster-devnet.env .env",
"cluster:testnet": "cp cluster-testnet.env .env",
"cluster:mainnet-beta": "cp cluster-mainnet-beta.env .env",
"localnet:update": "solana-localnet update",
"localnet:up": "set -x; solana-localnet down; set -e; solana-localnet up",
"localnet:down": "solana-localnet down",
"localnet:logs": "solana-localnet logs -f",
"pretty": "prettier --write '{,src/**/}*.js'",
"postinstall": "npm run bpf-sdk:update && cargo update --manifest-path=src/program/Cargo.toml && cargo update --manifest-path=src/program-test/Cargo.toml",
"test": "npm run build:program && npm run flow"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"prettier": "^2.0.2"
},
"dependencies": {
"@solana/web3.js": "^0.43.4",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.26.0",
"bn.js": "^5.0.0",
"body-parser": "^1.18.3",
"buffer-layout": "^1.2.0",
"css-loader": "^3.1.0",
"dotenv": "8.2.0",
"eslint": "^6.1.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-react": "^7.11.1",
"event-emitter": "^0.3.5",
"express": "^4.16.4",
"flow-bin": "0.121.0",
"flow-typed": "^3.0.0",
"http-server": "^0.12.0",
"jayson": "^3.0.1",
"json-to-pretty-yaml": "^1.2.2",
"mkdirp-promise": "^5.0.1",
"moment": "^2.22.2",
"mz": "^2.7.0",
"node-fetch": "^2.2.0",
"react": "^16.5.2",
"react-bootstrap": "^1.0.0",
"react-dom": "^16.5.2",
"readline-promise": "^1.0.3",
"semver": "^7.0.0",
"superstruct": "^0.8.0",
"watch": "^1.0.2",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.9"
},
"engines": {
"node": "11.x"
}
}