-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "@nullvoxpopuli/limber-consts",
"version": "0.0.1",
"description": "repo constants for helping out node scripts",
"main": "index.js",
"author": "NullVoxPopuli",
"type": "commonjs",
"license": "MIT",
"private": true,
"scripts": {
"lint:fix": "pnpm -w exec lint fix",
"lint": "pnpm -w exec lint",
"lint:js": "pnpm -w exec lint js",
"lint:js:fix": "pnpm -w exec lint js:fix",
"lint:prettier:fix": "pnpm -w exec lint prettier:fix",
"lint:prettier": "pnpm -w exec lint prettier"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@nullvoxpopuli/eslint-configs": "^3.2.2",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"concurrently": "^8.2.2",
"eslint": "^8.55.0",
"prettier": "^3.2.5",
"prettier-plugin-ember-template-tag": "2.0.0",
"typescript": "^5.3.3"
},
"volta": {
"extends": "../../package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/NullVoxPopuli/limber.git",
"directory": "packages/consts"
}
}