-
Notifications
You must be signed in to change notification settings - Fork 188
/
package.json
81 lines (81 loc) · 2.72 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": "@dinero.js/monorepo",
"version": "2.0.0-alpha.14",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*",
"website"
],
"scripts": {
"build:clean": "turbo build:clean",
"build:esm": "turbo build:esm --filter=./packages/*",
"build:definitions": "turbo build:definitions --filter=./packages/*",
"build:types": "turbo build:types --filter=./packages/*",
"build:umd:cjs": "turbo build:umd:cjs --filter=./packages/*",
"build": "turbo build --filter=./packages/*",
"format": "prettier --write .",
"lint": "turbo lint --filter=./packages/*",
"prepare": "husky install && yarn build",
"release": "shipjs prepare",
"test:size": "bundlesize",
"test:types": "tsc --noEmit",
"test": "turbo test --filter=./packages/*",
"website:dev": "yarn --cwd website/ dev",
"website:start": "yarn --cwd website/ start",
"website:build": "turbo build --filter=./packages/* --filter=./website"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.20.2",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@microsoft/api-extractor": "7.33.5",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-replace": "3.1.0",
"@types/big.js": "6.1.6",
"@types/jest": "28.1.8",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"@babel/eslint-parser": "7.11.0",
"babel-jest": "28.1.3",
"babel-loader": "8.3.0",
"babel-plugin-inline-replace-variables": "1.3.1",
"babel-plugin-module-resolver": "4.1.0",
"big.js": "6.2.1",
"bundlesize": "0.18.1",
"cross-spawn": "7.0.3",
"eslint": "7.32.0",
"eslint-config-algolia": "20.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-functional": "3.7.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "24.7.0",
"eslint-plugin-jsdoc": "39.6.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-sonarjs": "0.16.0",
"fast-check": "3.6.3",
"husky": "8.0.1",
"jest": "28.1.3",
"jest-watch-typeahead": "1.1.0",
"lint-staged": "12.5.0",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"rollup": "2.79.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-filesize": "9.1.2",
"rollup-plugin-license": "2.9.1",
"rollup-plugin-terser": "7.0.2",
"shipjs": "0.24.4",
"ts-node": "10.9.1",
"turbo": "1.6.3",
"typescript": "4.8.4"
}
}