-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 2.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
{
"private": true,
"name": "@rentfuse-labs/neo-wallet-adapter",
"author": "Rentfuse Labs",
"repository": "https://github.com/rentfuse-labs/neo-wallet-adapter",
"license": "Apache-2.0",
"workspaces": {
"packages": [
"packages/*/*",
"packages/bundle"
],
"nohoist": [
"**/babel-loader",
"**/babel-loader/**",
"**/webpack",
"**/webpack/**"
]
},
"engines": {
"node": ">= 10"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lerna:clean": "lerna run clean",
"lerna:build": "lerna run build",
"lerna:link": "lerna link",
"lerna:build-link": "yarn run lerna:build && yarn run lerna:link",
"lerna:bootstrap": "lerna bootstrap",
"lerna:test": "lerna run test",
"lerna:publish": "lerna publish from-package",
"starter:nextjs-dev": "cd packages/starter/nextjs-starter && yarn run dev",
"starter:ant-design-dev": "cd packages/starter/ant-design-starter && yarn run dev",
"cdn:dist": "cd packages/bundle && yarn run dist:prod",
"deploy": "yarn deploy:docs && yarn deploy:example",
"deploy:docs": "yarn docs && gh-pages --dist docs --dotfiles",
"deploy:example": "gh-pages --dist packages/starter/example/out --dest example --dotfiles",
"docs": "shx rm -rf docs && NODE_OPTIONS=--max_old_space_size=8192 typedoc && shx cp ./{.nojekyll,wallets.png,modal_logo.png} docs/",
"fmt": "prettier --write '{*,**/*}.{js,ts,jsx,tsx,json}'",
"lint": "eslint --ext .ts . && prettier --check '{*,**/*}.{js,ts,jsx,tsx,json}'",
"lint:fix": "eslint --fix --ext .ts . && yarn fmt",
"nuke": "shx rm -rf {.,packages/*/*}/{node_modules,yarn.lock}"
},
"devDependencies": {
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"cross-env": "7.0.3",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.2.3",
"lerna": "^4.0.0",
"prettier": "^2.4.0",
"shx": "^0.3.3",
"ts-loader": "9.2.8",
"tslib": "^2.3.0",
"typedoc": "^0.22.2",
"typescript": "^4.4.3",
"webpack": "5.70.0",
"webpack-cli": "4.9.2"
},
"resolutions": {}
}