-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.6 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
{
"name": "genesis",
"version": "3.0.0",
"private": true,
"scripts": {
"init:install": "npm i",
"init:prettier": "prettier --write .",
"init:husky": "husky install",
"init:all": "npm run init:install && npm run init:prettier && npm run init:husky",
"dev": "VERCEL_GITHUB_COMMIT_SHA=$(git rev-parse --short HEAD) next dev",
"build": "next build",
"start": "next start",
"check:format": "prettier --check .",
"check:lint": "eslint . --ext ts --ext tsx --ext js && stylelint ./styles/**/*.scss",
"check:types": "tsc --pretty --noEmit",
"check:all": "npm run check:format && npm run check:lint && npm run check:types && npm run build"
},
"dependencies": {
"@next/third-parties": "^14.2.3",
"@reduxjs/toolkit": "^1.9.5",
"next": "^14.2.3",
"react": "^18.2.0",
"react-countup": "^6.5.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.5.3",
"react-redux": "^8.1.2",
"sass": "^1.43.4",
"swiper": "^11.0.5"
},
"devDependencies": {
"@types/node": "^20.5.0",
"@types/react": "18.2.20",
"@types/react-dom": "^18.2.7",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.16",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.26.1",
"husky": "^8.0.3",
"prettier": "^3.0.1",
"redux-logger": "^3.0.6",
"stylelint": "^16.5.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard-scss": "^13.1.0",
"typescript": "^5.1.6"
}
}