-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.56 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "nogilib",
"private": true,
"description": "NOGILIB is a web app for showing the information about Nogizaka46 in a user-friendly way.",
"version": "5.0.0",
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev -p 9000",
"serve": "next start -p 9000",
"type-check": "tsc",
"type-check:server": "tsc -b tsconfig-server.json",
"type-check-watch": "tsc --watch",
"type-check-watch:server": "tsc -b tsconfig-server.json --watch",
"generate-data": "NODE_PATH=./src ts-node --project tsconfig-server.json src/db/src/main.ts",
"generate-responsive-images": "cd ./scripts && npm run generate-responsive-images",
"download-profile-images": "cd ./scripts && npm run download-profile-images",
"lint": "next lint",
"format": "prettier 'src/**/*.{ts,tsx}' --write",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook -s ./public",
"prepare": "husky install"
},
"lint-staged": {
"src/client/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"src/pages/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"src/server/**/*.ts": [
"prettier --write",
"eslint --fix"
],
"src/server/**/raw/editor/**/*.ts": [
"npm run generate-data"
]
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@fontsource/playfair-display": "^4.5.10",
"flexsearch": "^0.6.32",
"focus-visible": "^5.2.0",
"framer-motion": "^6.5.1",
"next": "^12.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.4.22",
"@types/jest": "^27.5.0",
"@types/node": "^18.0.6",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-next": "^12.2.2",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"husky": "^8.0.1",
"jest": "^27.5.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"storybook-addon-next-router": "^4.0.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}