-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.15 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
{
"name": "tanzak-uploader",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "run-p dev:next 'gen:sass-type --watch'",
"dev:next": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write src --ignore-path .gitignore --ignore-path .prettierignore",
"format:check": "prettier --check src --ignore-path .gitignore --ignore-path .prettierignore",
"type-check": "tsc --noEmit",
"gen": "run-p gen:*",
"gen:sass-type": "typed-scss-modules src",
"gen:api": "openapi-typescript src/api/openapi.yaml --output src/api/client.d.ts",
"stylelint": "stylelint 'src/**/*.{css,scss}'",
"stylelint:fix": "stylelint --fix 'src/**/*.{css,scss}'",
"typed-scss-modules": "typed-scss-modules src/styles --output src/styles",
"fix": "run-p lint:fix stylelint:fix format",
"postinstall": "run-p gen:*",
"gen:icons": "node scripts/gen-icons.mjs",
"dl:icons": "node scripts/dl-icons.mjs"
},
"dependencies": {
"@next/third-parties": "^14.2.4",
"next": "14.2.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@svgr/babel-plugin-remove-jsx-attribute": "8.0.0",
"@svgr/babel-plugin-replace-jsx-attribute-value": "8.0.0",
"@svgr/cli": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"clsx": "^2.1.1",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.4",
"hono": "^4.4.8",
"normalize.css": "^8.0.1",
"npm-run-all2": "^6.2.0",
"openapi-fetch": "^0.10.2",
"openapi-typescript": "^7.0.0",
"prettier": "^3.3.2",
"react-hook-form": "^7.52.0",
"sass": "^1.77.6",
"stylelint": "^16.6.1",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"typed-scss-modules": "^8.0.1",
"typescript": "^5.5.2",
"zx": "^8.1.3"
},
"packageManager": "[email protected]+sha256.b6fd0bfda555e7e584ad7e56b30c68b01d5a04f9ee93989f4b93ca8473c49c74",
"volta": {
"node": "20.14.0"
}
}