-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "@big-whale-labs/constants",
"version": "0.3.7",
"description": "Various constants used by BWL products",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prettier": "@big-whale-labs/prettier-config",
"repository": {
"type": "git",
"url": "git+https://github.com/BigWhaleLabs/constants"
},
"license": "MIT",
"files": [
"dist/**/*"
],
"np": {
"2fa": false,
"tests": false,
"cleanup": false,
"yarn": false
},
"scripts": {
"release": "yarn build && np",
"build": "tsc --skipLibCheck",
"lint": "yarn pretty && eslint --max-warnings 0 --ext ts,tsx,json src",
"pretty": "prettier --check src",
"prepublishOnly": "yarn lint && yarn build"
},
"devDependencies": {
"@big-whale-labs/bwl-eslint-backend": "^1.0.3",
"@big-whale-labs/prettier-config": "^1.1.3",
"@rushstack/eslint-patch": "^1.2.0",
"@types/node": "^18.15.3",
"eslint": "^8.36.0",
"np": "^7.6.3",
"prettier": "^2.8.4",
"tsc-watch": "^6.0.0",
"typescript": "^5.0.2"
},
"packageManager": "yarn@3.5.0"
}