-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 2.25 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
{
"private": true,
"name": "@dao-xyz/peerbit-examples",
"author": "dao.xyz",
"repository": "https://github.com/@dao-xyz/peerbit-node",
"license": "Apache-2.0",
"type": "module",
"workspaces": {
"packages": [
"packages/**/*"
],
"nohoist": [
"**/@babel/preset-env",
"**/@babel/preset-env/**",
"**/babel-loader",
"**/babel-loader/**",
"**/webpack",
"**/webpack/**"
]
},
"engines": {
"node": ">=16.15.1"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "lerna run clean",
"build": "lerna run build --reject-cycles",
"build-node": "cd ./packages/node/ && yarn build",
"pub": "lerna publish --no-private",
"test": "lerna run test",
"fmt": "prettier --write '{*,**/*}.{js,ts,jsx,tsx,json,vue}'",
"lint": "eslint --ext .ts . && prettier --check '{*,**/*}.{js,ts,jsx,tsx,json,vue}'",
"lint:fix": "eslint --fix --ext .ts . && yarn fmt",
"nuke": "shx rm -rf {.,packages/*/*}/{node_modules,yarn.lock}",
"postinstall": "mkdir -p node_modules/chai-extend && cp chai-global.js node_modules/chai-extend/chai-global.js && echo '{\"type\": \"module\"}' > node_modules/chai-extend/package.json"
},
"devDependencies": {
"@types/eslint": "^8.40.2",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/node": "^17.0.32",
"@types/prettier": "^2.4.2",
"@types/chai": "^4.3.18",
"chai": "^5.1.1",
"chai-as-promised": "^8",
"@types/chai-as-promised": "^8",
"eslint": "^8.27.0",
"@types/mocha": "^10.0.7",
"mocha": "^10.7.0",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-config-react-app": "^7.0.1",
"prettier": "^2.7.1",
"lerna": "^8.0.1",
"shx": "^0.3.4",
"start-server-and-test": "^1.14.0",
"ts-node": "^10.9.1",
"typescript": "^5.6.3",
"typescript-esm": "^2.0.0",
"json": "^11.0.0",
"rollup-plugin-copy": "^3.5.0"
}
}