This repository has been archived by the owner on Jun 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.41 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "ts-patch install -s && husky install",
"build": "ultra -r --build buildAll",
"clean": "ultra -r clean",
"lint": "ultra -r lint",
"build:test": "ultra -r build:test",
"format": "node ./scripts/format.js",
"postinstall": "ts-patch install --persist",
"test": "node ./node_modules/@principia/ptest/dist/bin/ptest.js",
"preversion": "yarn build",
"version:alpha": "lerna version prerelease --conventional-commits --preid=alpha",
"version:preminor": "lerna version preminor --conventional-commits",
"version:minor": "lerna version minor --conventional-commits",
"version:prepatch": "lerna version prepatch --conventional-commits",
"version:patch": "lerna version patch --conventional-commits",
"version:graduate": "lerna version --conventional-commits --conventional-graduate",
"ci": "yarn clean && yarn build && yarn test"
},
"devDependencies": {
"@0x706b/eslint-plugin-align-assignments": "^0.1.2",
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@types/benchmark": "^2.1.1",
"@types/cpx": "^1.5.2",
"@types/node": "^17.0.8",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"benny": "^3.7.1",
"chalk": "4.1.2",
"commitizen": "^4.2.4",
"concurrently": "^7.0.0",
"cpx": "^1.5.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"fp-ts": "^2.11.7",
"glob": "^7.2.0",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"madge": "^5.0.1",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^5.0.1",
"rimraf": "^3.0.2",
"sort-package-json": "^1.53.1",
"syncpack": "^6.2.0",
"ts-node": "^10.4.0",
"ts-patch": "^2.0.1",
"typescript": "^4.5.4",
"ultra-runner": "^3.10.5",
"yargs": "^17.3.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@0x706b/prettier-eslint-8": "^0.0.3"
},
"packageManager": "[email protected]"
}