-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
51 lines (51 loc) · 1.65 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
{
"name": "@colony/colony-js-mono",
"version": "1.0.0",
"scripts": {
"bootstrap": "pnpm --filter contractor install --ignore-scripts && pnpm --filter contractor run build && pnpm install --frozen-lockfile",
"build": "pnpm -r build",
"build-docs": "pnpm -r build-docs",
"lint": "pnpm -r lint",
"no-git-changes": "./scripts/no-git-changes.sh",
"prepare": "husky install",
"release": "pnpm run lint && pnpm run build && pnpm run test && pnpm run no-git-changes && changeset publish",
"version": "changeset version && pnpm install --lockfile-only",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck"
},
"engines": {
"node": "^16 || ^18 || ^20",
"pnpm": "^8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoinColony/colonyJS.git"
},
"author": "Christian Maniewski <code@chmanie.com>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/JoinColony/colonyJS/issues"
},
"homepage": "https://docs.colony.io/develop",
"devDependencies": {
"@colony/eslint-config-colony": "^9.2.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"tsup": "^7.2.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@changesets/cli": "^2.27.1"
}
}