-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.14 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
{
"name": "wen-new-standard-tests",
"version": "1.0.0",
"description": "WNS Sample Implementations",
"main": "src/index.ts",
"scripts": {
"clean": "rimraf dist/*",
"lint": "eslint . --ext .ts --fix",
"tsc": "tsc",
"build": "npm-run-all tsc",
"dev:start": "npm-run-all build start",
"dev": "ts-node src/index.ts",
"start": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wen-community/wen-new-standard.git"
},
"author": "Wen Foundation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wen-community/wen-new-standard/issues"
},
"homepage": "https://github.com/wen-community/wen-new-standard#readme",
"dependencies": {
"@coral-xyz/anchor": "^0.30.0",
"@solana/spl-token": "^0.3.11",
"@solana/web3.js": "^1.89.0",
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.21"
}
}