-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
35 lines (35 loc) · 875 Bytes
/
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
{
"name": "flowts",
"version": "0.0.1",
"description": "FlowTS project monorepo",
"repository": {
"type": "git",
"url": "https://github.com/zxbodya/flowts"
},
"author": "Bogdan Savluk <savluk.bogdan@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint './packages/**/*.{ts,js,tsx,jsx}' --quiet",
"build": "tsc -b",
"test": "./node_modules/.bin/lerna run test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"lerna": "^7.0.2",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid"
},
"workspaces": [
"packages/*"
]
}