forked from dinerojs/dinero.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.89 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
85
86
87
88
89
{
"name": "@dinero.js/monorepo",
"private": true,
"license": "MIT",
"workspaces": {
"packages": [
"packages/*",
"examples/*"
],
"nohoist": [
"**/@dinero.js/example-cart-react",
"**/@dinero.js/example-cart-react/**",
"**/@dinero.js/example-cart-vue",
"**/@dinero.js/example-cart-vue/**",
"**/@dinero.js/example-pricing-react",
"**/@dinero.js/example-pricing-react/**"
]
},
"scripts": {
"build:clean": "lerna run build:clean --no-private",
"build:esm": "lerna run build:esm --no-private",
"build:types": "lerna run build:types --no-private",
"build:umd:cjs": "lerna run build:umd:cjs --no-private",
"build": "lerna run build --no-private",
"format": "prettier --write .",
"lint": "eslint --ext .js,.ts .",
"prepare": "husky install && lerna run prepare --no-private",
"release": "shipjs prepare",
"start": "yarn run watch",
"test:size": "bundlesize",
"test:types": "tsc --noEmit",
"test": "jest",
"watch": "lerna run watch --parallel --no-private",
"website:dev": "yarn --cwd website/ dev",
"website:start": "yarn --cwd website/ start",
"website:build": "yarn --cwd website/ build"
},
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "7.15.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.14.5",
"@babel/preset-env": "7.15.0",
"@babel/preset-typescript": "7.15.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.0.4",
"@rollup/plugin-replace": "3.0.0",
"@types/big.js": "6.1.1",
"@types/jest": "27.0.1",
"@typescript-eslint/eslint-plugin": "4.29.2",
"@typescript-eslint/parser": "4.29.2",
"babel-eslint": "10.1.0",
"babel-jest": "27.0.6",
"babel-loader": "8.2.2",
"babel-plugin-inline-replace-variables": "1.3.1",
"babel-plugin-module-resolver": "4.1.0",
"big.js": "6.1.1",
"bundlesize": "0.18.1",
"concurrently": "6.2.1",
"eslint": "7.32.0",
"eslint-config-algolia": "18.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-functional": "3.6.0",
"eslint-plugin-import": "2.24.1",
"eslint-plugin-jest": "24.4.0",
"eslint-plugin-jsdoc": "36.0.7",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-sonarjs": "0.10.0",
"husky": "7.0.1",
"jest": "27.0.6",
"jest-watch-typeahead": "0.6.4",
"lerna": "4.0.0",
"lint-staged": "11.1.2",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"rollup": "2.56.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-filesize": "9.1.1",
"rollup-plugin-license": "2.5.0",
"rollup-plugin-terser": "7.0.2",
"shipjs": "0.23.3",
"ts-node": "10.2.1",
"typescript": "4.3.5",
"watch": "1.0.2"
}
}