-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "create-polkadot-dapp",
"version": "0.0.0-set-from-ci",
"author": "Yuri Volkov <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"devDependencies": {
"@eng-automation/js-style": "^3.1.0",
"chokidar": "^4.0.1",
"commander": "^12.1.0",
"type-fest": "^4.27.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@inquirer/core": "^10.0.1",
"@inquirer/prompts": "^7.0.1",
"@types/node": "20",
"chalk": "^4.1.2",
"chalk-template": "^0.5.0"
},
"scripts": {
"do-pack": "cd dist && yarn pack",
"do-publish": "cd dist && yarn publish",
"build": "tsc && rm -rf dist/templates && cp -r templates dist/templates && cp yarn.lock dist/ && cp README.md dist/",
"back-sync": "node dist/src/scripts/backSync.js",
"lint": "npx eslint ./src/ --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npx eslint ./src/ --ext .js,.jsx,.ts,.tsx --fix"
},
"bin": {
"create-polkadot-dapp": "src/bin/main.js"
},
"imports": {
"#src/*": "./src/*.js"
}
}