-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 843 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 843 Bytes
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
{
"name": "monorepo-datapipline-template-ts",
"version": "0.1.0",
"description": "Monorepo Harness",
"main": "index.js",
"repository": "https://github.com/forkzero/monorepo-datapipline-template-ts.git",
"author": "George Moon <george.moon@gmail.com>",
"license": "SEE LICENSE IN LICENSE",
"private": true,
"scripts": {
"test": "jest",
"compile": "tsc -b packages/* -v"
},
"bolt": {
"workspaces": [
"packages/*"
]
},
"devDependencies": {
"@types/node": "^12.12.21",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.2",
"gts": "^1.1.2",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"sinon": "^7.5.0",
"typescript": "^3.7.3"
}
}