-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.8 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.8 KB
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
{
"name": "helpmegoforit",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "next dev",
"postcss": "postcss components/Footer/Footer.scss --dir build/static/css --parser postcss-scss",
"build": "NODE_ENV=production next build",
"start:pre-release": "next start",
"lint": "npm run lint:ts && npm run lint:scss",
"lint:fix": "npm run lint:ts:fix && npm run lint:scss:fix",
"lint:ts": "next lint",
"lint:scss": "npx stylelint \"**/*.{css,scss}\"",
"lint:ts:fix": "next lint -- --fix",
"lint:scss:fix": "npm run lint:scss -- --fix",
"prepare": "husky"
},
"dependencies": {
"clsx": "^2.1.0",
"cookies-next": "^4.1.1",
"next": "14.1.2",
"next-i18next": "^15.2.0",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"react": "^18",
"react-dom": "^18",
"react-intersection-observer": "^9.8.1",
"sharp": "^0.33.3"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@stylistic/eslint-plugin": "^1.6.3",
"@stylistic/stylelint-config": "^1.0.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"autoprefixer": "^10.4.19",
"eslint": "^8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"postcss-cli": "^11.0.0",
"postcss-flexbugs-fixes": "^5.0.2",
"sass": "^1.71.1",
"stylelint": "^16.2.1",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.4",
"typescript": "^5"
}
}