This repository was archived by the owner on Feb 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.71 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
56
57
58
59
{
"name": "population-graph",
"version": "1.0.0",
"description": "Population graph by prefecture",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "eslint 'src/**/*.{ts,tsx}' && tsc --noEmit",
"lint:fix": "eslint --fix 'src/**/*.{ts,tsx}' && tsc --noEmit",
"prepare": "husky install",
"start": "next start",
"stylelint": "stylelint 'src/**/*.scss'",
"stylelint:fix": "stylelint --fix 'src/**/*.scss'"
},
"keywords": [],
"author": "livewing.net <dev@livewing.net> (https://livewing.net/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/livewing/population-graph.git"
},
"bugs": {
"url": "https://github.com/livewing/population-graph/issues"
},
"private": true,
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.scss": "stylelint --fix"
},
"dependencies": {
"next": "^11.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"recharts": "^2.0.10",
"sass": "^1.37.5",
"swr": "^0.5.6"
},
"devDependencies": {
"@types/react": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.20.1",
"typescript": "^4.3.5"
}
}