forked from solana-developers/create-solana-dapp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.21 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
{
"name": "create-solana-dapp",
"version": "1.0.1",
"description": "Create a Solana dApp template for quick-starting!",
"bin": "./dist/index.js",
"main": "./dist/index.js",
"scripts": {
"copy-files": "copyfiles --up 1 \"src/gitignore\" dist/",
"build": "ncc build ./src/index.ts --out dist/ && yarn copy-files",
"test-prep": "rm -rf sample-dapp test-dapp-next-anchor test-dapp-next-native test-dapp-vue-anchor test-dapp-vue-native test-dapp-svelte-anchor test-dapp-svelte-native",
"test": "yarn run test-prep && yarn run build && yarn run ts-mocha -p ./tests/tsconfig.test.json -t 1000000 ./tests/tests.ts",
"quick": "yarn run test-prep && yarn run build && node dist/index.js sample-dapp"
},
"dependencies": {
"axios": "^0.27.2",
"chalk": "^5.0.1",
"commander": "^9.3.0",
"copyfiles": "^2.4.1",
"cross-spawn": "^7.0.3",
"fs": "^0.0.1-security",
"fs-extra": "^10.1.0",
"nunjucks": "^3.2.3",
"path": "^0.12.7",
"tree-kill": "^1.2.2",
"validate-npm-package-name": "^4.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/chalk": "^2.2.0",
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.3",
"@types/nunjucks": "^3.2.1",
"@types/validate-npm-package-name": "^4.0.0",
"@vercel/ncc": "^0.34.0",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"files": [
"/dist"
],
"keywords": [
"solana",
"next",
"react",
"vue",
"web3",
"yarn"
],
"license": "MIT",
"homepage": "https://github.com/solana-developers/create-solana-app#readme",
"bugs": {
"url": "https://github.com/solana-developers/create-solana-app/issues"
},
"repository": {
"name": "solana-developers/create-solana-dapp",
"type": "git",
"url": "https://github.com/solana-developers/create-solana-app"
},
"contributors": [
{
"name": "Joe Caulfield",
"url": "https://github.com/jpcaulfi"
},
{
"name": "Jacob Creech",
"url": "https://github.com/jacobcreech"
}
]
}