generated from kaypacha/next-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.51 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
90
91
92
93
94
95
96
97
98
{
"name": "next-boilerplate",
"version": "1.0.0",
"description": "next boilerplate created by Kay Pacha",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npx eslint src/",
"test": "jest",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"storybook:deploy": "surge ./storybook-static -d ${GITHUB_REPOSITORY#*/}-${GITHUB_HEAD_REF}.surge.sh --token $SURGE_TOKEN"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaypacha/next-boilerplate.git"
},
"author": "Kay Pacha",
"license": "ISC",
"bugs": {
"url": "https://github.com/kaypacha/next-boilerplate/issues"
},
"homepage": "https://github.com/kaypacha/next-boilerplate#readme",
"dependencies": {
"lodash": "^4.17.21",
"next": "^12.1.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scroll-parallax": "^3.2.0",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/react": "^6.4.9",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"eslint": "^8.10.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^4.3.8",
"jest": "^27.4.5",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"react-test-renderer": "^17.0.2",
"surge": "^0.23.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"arrowParens": "avoid"
},
"eslintConfig": {
"env": {
"node": true,
"jest": true,
"browser": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:prettier/recommended",
"next"
],
"rules": {
"no-unused-vars": 1,
"react/prop-types": "off",
"react/self-closing-comp": "error",
"no-var": "error",
"import/no-anonymous-default-export": "off"
},
"parserOptions": {
"sourceType": "module",
"requireConfigFile": false
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"jest --bail --findRelatedTests --coverage --env=jsdom"
]
},
"bundleDependencies": [
"react-smooth-scrollbar",
"smooth-scrollbar"
]
}