-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.09 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
{
"name": "boilerplate",
"version": "2.2.1",
"description": "Boilerplate utilizando Typescript, React, NextJS e Styled Components!",
"author": "Alquipo Neto",
"license": "MIT",
"repository": "github:Alquipo/boilerplate",
"homepage": "https://www.linkedin.com/in/alquiponeto/",
"engines": {
"node": ">= 16.0.0",
"npm": "We don't use this here bro... ;)",
"yarn": ">= 1.22.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --project tsconfig.json --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"test:staged": "jest --findRelatedTests",
"generate": "plop --plopfile generators/plopfile.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook ",
"serve-storybook": "serve storybook-static",
"prepare": "husky install"
},
"eslintConfig": {
"extends": "@alquipo/eslint-config/next"
},
"dependencies": {
"next": "^12.3.1",
"next-pwa": "^5.6.0",
"next-seo": "^5.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@alquipo/eslint-config": "^1.2.5",
"@babel/core": "^7.17.9",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/react": "^6.5.12",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/react": "18.0.21",
"@types/styled-components": "^5.1.26",
"babel-loader": "^8.2.4",
"eslint": "^8.25.0",
"git-commit-msg-linter": "^4.1.1",
"husky": "^8.0.1",
"jest": "29.1.2",
"jest-environment-jsdom": "29.1.2",
"jest-styled-components": "^7.1.1",
"lint-staged": "^13.0.3",
"plop": "^3.0.5",
"prettier": "^2.6.2",
"serve": "14.0.1",
"storybook-addon-next": "1.6.9",
"typescript": "4.8.4"
}
}