-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.08 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
{
"name": "nextjs-boilerplate",
"version": "0.1.0",
"description": "Next.Js Boilerplate",
"author": "Marcelo Risoli<[email protected]>",
"license": "MIT",
"scripts": {
"build": "next build",
"build-storybook": "build-storybook",
"dev": "next",
"lint": "eslint . --ext .js,.ts",
"snapshot": "build-storybook && percy-storybook --widths=320,1280",
"start": "next start",
"storybook": "start-storybook -p 6006",
"test": "jest",
"test:coverage": "jest --coverage",
"type-check": "tsc --noEmit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@zeit/next-typescript": "^1.1.1",
"next": "^9.1.1",
"polished": "^3.4.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"styled-components": "^4.4.0"
},
"devDependencies": {
"@percy-io/percy-storybook": "^2.1.0",
"@storybook/addon-actions": "^5.2.5",
"@storybook/addon-info": "^5.2.5",
"@storybook/addon-links": "^5.2.5",
"@storybook/addons": "^5.2.5",
"@storybook/react": "^5.1.11",
"@types/jest": "^24.0.20",
"@types/next": "^8.0.6",
"@types/react": "^16.8.10",
"@types/react-dom": "^16.9.3",
"@types/storybook__react": "^4.0.2",
"@types/styled-components": "^4.1.20",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"babel-core": "^6.26.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^5.16.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-eslint-plugin": "^2.1.0",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"jest-junit": "^9.0.0",
"lint-staged": "^9.4.2",
"next-progressbar": "^1.0.0",
"prettier": "1.18.2",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.11.0",
"typescript": "^3.6.4"
}
}