-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 918 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
{
"name": "some_project_name",
"description": "{{ PROJECT_DESCRIPTION }}",
"version": "0.0.0",
"main": "build/index.js",
"license": "MIT",
"author": "Noel <[email protected]>",
"repository": "{{ PROJECT_REPO_URL }}",
"bugs": "{{ PROJECT_ISSUES_URI }}",
"keywords": [
"{{ SOME KEYWORDS HERE }}"
],
"files": [
"build",
"index.d.ts"
],
"scripts": {
"build": "yarn lint && yarn fmt && rimraf build && tsc",
"lint": "eslint src --ext .ts,.tsx --fix",
"fmt": "prettier --config ./.prettierrc.json --write ."
},
"dependencies": {},
"devDependencies": {
"@augu/eslint-config": "2.2.0",
"@augu/tsconfig": "1.1.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.5.1",
"typescript": "^4.6.2"
}
}