-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 3.35 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
82
83
84
{
"name": "next_starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "RUNTIME_ENVIRONMENT=localhost concurrently -n NEXT,TS -c grey,green \"next dev\" \"npm run ts:watch\"",
"staging": "RUNTIME_ENVIRONMENT=staging concurrently -n NEXT,TS -c grey,green \"next dev\" \"npm run ts:watch\"",
"prod": "RUNTIME_ENVIRONMENT=prod concurrently -n NEXT,TS -c grey,green \"next dev\" \"npm run ts:watch\"",
"build": "yarn license-check && next build",
"start": "next start",
"build:local": "yarn build && cp -R .next/static .next/standalone/.next && cp -R public .next/standalone",
"start:local": "RUNTIME_ENVIRONMENT=localhost node .next/standalone/server.js",
"test": "vitest --passWithNoTests",
"test:ci": "CI=true yarn test",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,gql,css,json,html,htm}'",
"codegen": "./scripts/swagger-codegen.sh",
"lint:google-fonts": "./scripts/lint-google-fonts.sh",
"lint:node-version": "./scripts/lint-node-version.sh",
"lint": "next lint && yarn lint:google-fonts && yarn lint:node-version",
"license-check": "license-checker --production --onlyAllow \"MIT;BSD-3-Clause;Apache-2.0;ISC;0BSD;Unlicense;UNLICENSED;CC-BY-4.0\" --out ./public/assets/third-party-licenses.txt",
"docker:build": "docker build . --build-arg NEXT_PUBLIC_COMMIT_HASH=happy-commit-hash -t aaa-next-starter",
"docker:run": "docker run -p 3000:3000 aaa-next-starter",
"disable-telemetry": "next telemetry disable",
"ts": "tsc --noEmit --incremental --preserveWatchOutput --pretty",
"ts:watch": "npm run ts -- --watch --project tsconfig.watch.json",
"prepare": "husky install",
"storybook": "storybook dev -p 6006 --ci",
"build-storybook": "storybook build"
},
"dependencies": {
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@hookform/resolvers": "^3.9.0",
"@mui/material": "^5.16.5",
"@mui/material-nextjs": "^5.16.4",
"@tanstack/react-query": "^5.51.15",
"@types/lodash": "^4.17.7",
"axios": "^1.7.2",
"axios-auth-refresh": "^3.3.6",
"lodash": "^4.17.21",
"negotiator": "^0.6.3",
"next": "14.2.5",
"prettier": "^3.3.3",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.52.1",
"react-intl": "^6.6.8",
"sharp": "^0.33.4",
"yup": "^1.4.0",
"zustand": "^4.5.4"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/nextjs": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/test": "^8.2.9",
"@testing-library/react": "^16.0.0",
"@types/negotiator": "^0.6.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^4.3.1",
"concurrently": "^8.2.2",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^0.8.0",
"happy-dom": "^14.12.3",
"husky": "^8.0.3",
"license-checker": "^25.0.1",
"postcss": "^8",
"storybook": "^8.2.9",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vitest": "^2.0.5"
}
}