-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 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
{
"name": "app_name",
"description": "app_description",
"version": "0.0.0",
"repository": "https://github.com/mizdra/app_name.git",
"author": "mizdra <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"flac2alac": "ts-node --files src/flac2alac.ts",
"rmflac": "ts-node --files src/rmflac.ts",
"check": "run-s check:*",
"check:tsc": "tsc --noEmit",
"check:eslint": "eslint src",
"check:prettier": "prettier --check ."
},
"devDependencies": {
"@mizdra/eslint-config-mizdra": "^0.7.0",
"@mizdra/prettier-config-mizdra": "^0.3.0",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"npm-run-all": "^4.1.5",
"prettier": "2.2.1",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"dependencies": {
"enquirer": "^2.3.6",
"piscina": "^2.2.0",
"shella": "^1.0.1"
}
}