-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
84 lines (84 loc) · 2.48 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
82
83
84
{
"name": "@glacierjs/root",
"version": "0.0.2",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"author": "JerryC ([email protected])",
"license": "MIT",
"private": true,
"scripts": {
"bootstrap": "pnpm i",
"build": "run-p build:*",
"build:npm": "pnpm nx run-many --target=build --all",
"build:dist": "pnpm nx run-many --target=dist --all",
"changeset": "node_modules/.bin/changeset",
"version": "pnpm changeset version && pnpm i",
"publish": "pnpm -r publish --no-git-checks",
"test:unit": "pnpm jest",
"lint": "pnpm eslint 'packages/**/*.ts'",
"cov": "pnpm jest --coverage ",
"doc:api": "pnpm typedoc",
"doc:serve": "pnpm docsify serve ./docs",
"watch": "run-p watch:*",
"watch:test": "jest --watch",
"watch:script": "pnpm nx run-many --target=watch:build --all"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@knodes/typedoc-plugin-monorepo-readmes": "^0.22.4",
"@nrwl/devkit": "13.10.0",
"@nrwl/workspace": "^14.1.4",
"@pnpm/exec": "^2.0.0",
"@pnpm/find-workspace-dir": "^4.0.0",
"@pnpm/find-workspace-packages": "^4.0.0",
"@pnpm/logger": "^4.0.0",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.30",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"cz-conventional-changelog": "^3.3.0",
"docsify-cli": "^4.4.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^4.2.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"jest-environment-node": "^27.5.1",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"nx": "14.0.5",
"nyc": "^15.1.0",
"open-cli": "^7.0.1",
"prettier": "^2.5.1",
"rollup": "^2.70.1",
"rollup-plugin-inject-process-env": "^1.3.1",
"service-worker-mock": "^2.0.5",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typedoc": "^0.22.12",
"typescript": "^4.5.5"
},
"files": [
"dist",
"build/main",
"build/module",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"prettier": {
"singleQuote": true
}
}