forked from ceramicnetwork/js-ceramic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.12 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
{
"name": "root",
"repository": {
"type": "git",
"url": "git+https://github.com/ceramicnetwork/js-ceramic.git"
},
"bugs": {
"url": "https://github.com/ceramicnetwork/js-ceramic/issues"
},
"homepage": "https://github.com/ceramicnetwork/js-ceramic#readme",
"scripts": {
"postinstall": "npx lerna bootstrap --hoist --ci",
"test": "npx lerna exec npm t",
"build": "npx lerna run build",
"docs": "npx typedoc",
"publish:release-candidate": "npx lerna publish --dist-tag next --preid rc --no-verify-access --conventional-prerelease bump preminor",
"publish:release": "npx lerna publish --dist-tag latest --create-release github --no-verify-access --conventional-graduate bump minor",
"publish:hotfix": "npx lerna publish --no-verify-access --conventional-graduate bump patch",
"lint": "npx lerna run lint",
"clean": "npm run clean:deps && npm run clean:coverage && npm run clean:build-artifacts",
"clean:install:build": "npm run clean && npm install && npm run build",
"clean:deps": "npx --yes rimraf ./packages/*/node_modules ./node_modules",
"clean:coverage": "npx rimraf ./packages/*/coverage",
"clean:build-artifacts": "npx rimraf ./packages/*/lib"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"babel-jest": "^27.4.6",
"eslint": "^8.7.0",
"eslint-config-3box": "^0.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^25.7.0",
"eslint-import-resolver-typescript": "^3.4.0",
"jest": "^28.1.1",
"jest-resolver-enhanced": "^1.0.1",
"lerna": "^4.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typedoc": "^0.23.2",
"typescript": "^4.7.4"
},
"prettier": "eslint-config-3box/prettier.config",
"dependencies": {
"node-fetch": "npm:@achingbrain/node-fetch@^2.6.6"
}
}