-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 2.64 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
42
43
44
45
46
47
48
49
50
{
"name": "eslint-template",
"version": "0.0.1",
"description": "Template ESLint project using Flat Config with Stylish Plugin. Includes WebPPL",
"author": "Dae Houlihan <[email protected]> (https://daeh.info)",
"license": "MIT",
"homepage": "https://github.com/daeh/eslint-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/daeh/eslint-template.git"
},
"bugs": {
"url": "https://github.com/daeh/eslint-template/issues"
},
"scripts": {
"update-deps": "yarn set version stable && yarn upgrade-interactive",
"build": "tsc --project tsconfig.json --noEmit",
"build-dev": "export NODE_ENV=development && export ESLINT_USE_FLAT_CONFIG=true && prettier --config prettier.config.mjs --write . && eslint --config eslint.config.mjs --fix . && tsc --project tsconfig.dev.json --noEmit",
"build-prod": "export NODE_ENV=production && export ESLINT_USE_FLAT_CONFIG=true && prettier --config prettier.config.mjs --write . && eslint --config eslint.config.mjs --fix . && tsc --project tsconfig.prod.json --noEmit",
"lint": "export ESLINT_USE_FLAT_CONFIG=true && prettier --config prettier.config.mjs --write . && eslint --config eslint.config.mjs --fix . && tsc --project tsconfig.json --noEmit",
"lint-dev": "export NODE_ENV=development && export ESLINT_USE_FLAT_CONFIG=true && prettier --config prettier.config.mjs --write . && eslint --config eslint.config.mjs --fix . && tsc --project tsconfig.dev.json --noEmit",
"lint-prod": "export NODE_ENV=production && export ESLINT_USE_FLAT_CONFIG=true && prettier --config prettier.config.mjs --write . && eslint --config eslint.config.mjs --fix . && tsc --project tsconfig.prod.json --noEmit",
"lint-dry": "export ESLINT_USE_FLAT_CONFIG=true && prettier --config prettier.config.mjs --check . ; eslint --config eslint.config.mjs . && tsc --project tsconfig.json --noEmit"
},
"type": "module",
"devDependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.10.0",
"@types/eslint": "^9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/espree": "^10",
"@types/lodash": "^4.17.13",
"@types/node": "^22.8.4",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-prettier": "^5.2.1",
"espree": "^10.3.0",
"globals": "^15.11.0",
"lodash": "^4.17.21",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"webppl": "^0.9.15"
},
"packageManager": "[email protected]"
}