-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.59 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
51
52
53
54
55
{
"name": "anime-master",
"version": "1.0.0",
"description": "Typescript project template for me",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf dist",
"build": "tsc",
"fix": "run-p fix:*",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext js,ts .",
"lint:prettier": "prettier -l \"**/*.{json,md,yml}\"",
"lint:type": "tsc --noEmit"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@typescript-eslint/eslint-plugin": "3.0.0-alpha.27",
"@typescript-eslint/parser": "3.0.0-alpha.27",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-better-styled-components": "^1.1.2",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-simple-import-sort": "5.0.3",
"husky": "^4.3.8",
"lint-staged": "^10.2.4",
"npm-run-all": "4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "^3.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kokutaro/anime-master.git"
},
"keywords": [
"anime"
],
"author": "Hiromi Kohara",
"license": "ISC",
"bugs": {
"url": "https://github.com/kokutaro/anime-master/issues"
},
"homepage": "https://github.com/kokutaro/anime-master#readme",
"dependencies": {
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"express": "^4.21.0"
}
}