-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 997 Bytes
/
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
{
"name": "app_name",
"description": "app_description",
"version": "0.0.0",
"repository": "https://github.com/mizdra/app_name.git",
"author": "mizdra <pp.mizdra@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"start": "ts-node src/index.ts",
"dev": "yarn run dev",
"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"
}
}