-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.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
{
"name": "fluid-type-scale-calculator",
"description": "Generate fluid typography variables with a modular type scale.",
"version": "1.4.0",
"license": "MIT",
"author": {
"name": "Aleksandr Hovhannisyan",
"email": "[email protected]",
"url": "https://www.aleksandrhovhannisyan.com/"
},
"scripts": {
"dev": "next dev",
"prod": "run-s build start",
"prebuild": "npx jest",
"build": "next build",
"start": "next start",
"test:watch": "npx jest --watch",
"test": "npx jest",
"postbuild": "next-sitemap",
"lint": "npm-run-all lint:*",
"lint:fix": "npm-run-all --parallel lint:*:fix",
"lint:css": "stylelint \"src/**/*.scss\"",
"lint:css:fix": "stylelint --fix \"src/**/*.scss\"",
"lint:ts": "eslint --cache \"**/*.ts?(x)\"",
"lint:ts:fix": "eslint --cache --fix \"**/*.ts?(x)\""
},
"devDependencies": {
"@netlify/plugin-lighthouse": "^2.1.3",
"@types/jest": "^27.4.1",
"@types/jsonld": "^1.5.6",
"@types/lodash": "^4.14.180",
"@types/node": "17.0.23",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"autoprefixer": "^10.4.4",
"babel-jest": "^27.5.1",
"csstype": "^3.0.11",
"eslint": "^8.12.0",
"eslint-config-next": "12.1.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^4.3.0",
"jest": "^27.5.1",
"lint-staged": "^10.4.0",
"netlify-cli": "^8.5.0",
"next-sitemap": "^2.5.14",
"npm-run-all": "^4.1.5",
"outdent": "^0.8.0",
"prettier": "^2.5.0",
"sass": "^1.43.5",
"stylelint": "^14.1.0",
"stylelint-config-standard-scss": "^3.0.0",
"typescript": "5.0.4"
},
"browserslist": [
"last 2 chrome versions",
"last 3 safari versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-checkout": "yarn"
}
},
"lint-staged": {
"*.ts": "yarn run lint:ts:fix",
"*.scss": "yarn run lint:css:fix"
},
"dependencies": {
"clsx": "^1.1.1",
"lodash": "^4.17.21",
"next": "13.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^3.22.4"
}
}