-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.87 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
85
86
87
88
89
{
"private": true,
"scripts": {
"start": "next start",
"build": "next build",
"preview": "npm run build && npm run start",
"dev": "./tasks/run.sh dev development",
"build:development": "./tasks/run.sh build development",
"start:development": "./tasks/run.sh start development",
"preview:development": "./tasks/run.sh preview development",
"analyze:development": "./tasks/run.sh analyze development",
"dev:staging": "./tasks/run.sh dev staging",
"build:staging": "./tasks/run.sh build staging",
"start:staging": "./tasks/run.sh start staging",
"preview:staging": "./tasks/run.sh preview staging",
"analyze:staging": "./tasks/run.sh analyze staging",
"dev:production": "./tasks/run.sh dev production",
"build:production": "./tasks/run.sh build production",
"start:production": "./tasks/run.sh start production",
"preview:production": "./tasks/run.sh preview production",
"analyze:production": "./tasks/run.sh analyze production",
"generate": "plop --plopfile ./plop/plopfile.js",
"storybook": "start-storybook -p 6006",
"prepare": "husky install",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}'",
"type-check": "tsc --pretty --noEmit",
"pre-commit": "lint-staged"
},
"prettier": "@airnauts/style-guide/prettier",
"dependencies": {
"@storybook/react": "^7.0.5",
"next": "^14.0.0",
"next-sitemap": "^4.0.7",
"plop": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.32.0"
},
"engines": {
"node": ">=18.17.0"
},
"packageManager": "pnpm@8.9.2",
"devDependencies": {
"@airnauts/style-guide": "^1.6.1",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@next/bundle-analyzer": "^13.3.0",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/preset-scss": "^1.0.3",
"@storybook/testing-library": "^0.0.13",
"@svgr/webpack": "^6.5.1",
"@types/node": "^18.14.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"cross-env": "^7.0.3",
"eslint": "^8.34.0",
"eslint-config-next": "^13.4.3",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"next": "^13.2.1",
"prettier": "^2.8.4",
"storybook": "^6.5.16",
"storybook-css-modules": "^1.0.8",
"stylelint": "^15.2.0",
"typescript": "^4.9.5"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --fix"
],
"**/*.{ts,tsx}": [
"bash -c 'pnpm type-check'"
],
"**/*.{js,jsx,ts,tsx,css,scss}": [
"prettier --write"
],
"**/*.scss": [
"stylelint **/*.scss --fix"
],
"**/*.css": [
"stylelint **/*.css --fix"
]
}
}