-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.09 KB
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
{
"eslintConfig": {
"extends": "@brettm12345/eslint-config-node",
"ignorePatterns": ["dist", ".log", "ts_compiled", "*.d.ts"],
"rules": {
"unicorn/filename-case": [
1,
{
"case": "kebabCase"
}
]
}
},
"scripts": {
"clean": "echo '{ \"init-script.path\": \"~/etc/vscode/init\" }' > ~/.config/Code/User/settings.json && rm -rf ~/.vscode/extensions/* && code --install-extension bodil.init-script",
"lint": "eslint *.ts ./**/*.ts",
"build": "tsc"
},
"dependencies": {
"@types/fs-extra": "^8.1.0",
"@types/node": "^13.11.1",
"fp-ts": "^2.5.3",
"fs": "^0.0.1-security",
"fs-extra": "^9.0.0",
"path": "^0.12.7",
"typescript": "^3.8.3",
"vscode": "^1.1.36",
"vscode-use-package": "^0.1.3"
},
"devDependencies": {
"@brettm12345/eslint-config-node": "^1.0.6",
"@types/package-json": "^5.0.1",
"eslint": "^6.8.0",
"eslint-plugin-prefer-arrow-functions": "^3.0.1",
"json-schema-to-typescript": "^8.2.0",
"prettier": "^2.0.4",
"ts-node": "^8.8.2",
"tsdx": "^0.13.1"
}
}