-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
80 lines (80 loc) · 2.3 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
{
"name": "frp-ts",
"version": "1.0.0-alpha.9",
"description": "Monorepo for @frp-ts project",
"author": "raveclassic",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/raveclassic/frp-ts.git"
},
"bugs": {
"url": "https://github.com/raveclassic/frp-ts/issues"
},
"homepage": "https://github.com/raveclassic/frp-ts#readme",
"workspaces": [
"./packages/core",
"./packages/lens",
"./packages/fp-ts",
"./packages/react",
"./packages/test-utils",
"./packages/utils"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "nx run-many --target=build --all --parallel",
"lint": "nx run-many --target=lint --all --parallel",
"test": "nx run-many --target=test --all --parallel",
"typedoc": "typedoc && cp jekyll_config.yml docs/_config.yml",
"preversion": "pnpm i --frozen-lockfile",
"version": "yarn typedoc && git add docs && pnpm i && git add pnpm-lock.yaml",
"postversion": "git push",
"predeploy": "pnpm build",
"deploy": "nx run-many --target=deploy --all"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-angular": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@nrwl/cli": "14.1.7",
"@nrwl/eslint-plugin-nx": "14.1.7",
"@nrwl/jest": "14.1.7",
"@nrwl/js": "14.1.7",
"@nrwl/linter": "14.1.7",
"@nrwl/nx-cloud": "14.0.5",
"@nrwl/workspace": "14.1.7",
"@octokit/core": "^3.5.1",
"@swc/cli": "~0.1.52",
"@swc/core": "1.2.118",
"@swc/helpers": "~0.2.14",
"@types/jest": "27.4.1",
"@types/node": "^14.17.30",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"eslint": "8.12.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-unicorn": "^37.0.1",
"husky": "^8.0.1",
"jest": "27.5.1",
"lerna": "^4.0.0",
"ngx-deploy-npm": "^3.0.7",
"nx": "14.1.7",
"prettier": "2.6.2",
"ts-jest": "27.1.4",
"ts-node": "^10.3.1",
"tslib": "^2.4.0",
"typedoc": "^0.22.6",
"typescript": "^4.4.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"resolutions": {
"tslib": "^2.1.0"
}
}