-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "fardel-monorepo",
"workspaces": [
"packages/*"
],
"private": true,
"scripts": {
"clean": "rimraf ./packages/*/dist",
"lint": "eslint --ext ts packages --ignore-path .gitignore",
"build": "yarn workspaces run build",
"clean:types": "rimraf ./types",
"build:types": "yarn clean:types && tsc && node ./build/types-bundler.js && yarn clean:types"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.15.1",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@types/sinon": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^7.24.0",
"lerna": "^4.0.0",
"mocha": "^8.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.47.0",
"sinon": "^10.0.0",
"typescript": "^4.2.4"
},
"license": "MIT",
"version": "0.0.1"
}