-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.23 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
79
80
81
{
"name": "ripio",
"version": "0.0.0",
"license": "Apache 2.0",
"scripts": {
"lint:check": "npm run lint:check -workspaces",
"format:check": "npm run format:check -workspaces",
"build": "npm run build -workspaces",
"release":"npm run release -workspaces",
"test": "jest",
"test-cov": "jest --ci --coverage --reporters=default --reporters=jest-junit"
},
"private": true,
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
{
"name": "develop",
"prerelease": "dev"
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/changelog",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md", "package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md",
"changelogTitle": "# Versioning Changelog"
}
],
"@semantic-release/github"
]
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"axios-mock-adapter": "^1.21.2",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"ganache": "^7.0.3",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"jest-junit": "^14.0.1",
"prettier": "^2.6.2",
"semantic-release": "^19.0.5",
"semantic-release-monorepo": "^7.0.5",
"ts-jest": "^29.0.3",
"ts-node": "^10.7.0",
"typescript": "^4.9.3"
},
"workspaces": [
"packages/sdk",
"packages/nft",
"packages/storageAws",
"packages/storageHttp",
"packages/storageIpfs"
]
}