generated from narze/thank-u-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.49 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
{
"name": "thank-u-nextjs",
"author": "@narze",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:base-css": "tailwindcss build ./styles/tailwind.base.css -o ./styles/base.css",
"type-check": "tsc --pretty --noEmit && tsc --pretty --noEmit -p cypress",
"format": "prettier --write \"**/*.{js,ts,tsx}\"",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test && yarn cy:ci",
"cy:run": "cypress run",
"cy:run:headless": "cypress run --browser chrome --headless",
"cy:open": "cypress open",
"cy:ci": "start-test start 3000 cy:run:headless",
"e2e": "start-test dev 3000 cy:open",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@emotion/core": "^10.0.35",
"emotion": "^10.0.27",
"emotion-theming": "^10.0.27",
"next": "9.5.3",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@emotion/babel-plugin": "^11.0.0-next.17",
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-essentials": "^6.0.21",
"@storybook/addon-links": "^6.0.21",
"@storybook/react": "^6.0.21",
"@tailwindcss/ui": "^0.6.0",
"@tailwindcssinjs/macro": "^0.9.2",
"@testing-library/cypress": "^7.0.0",
"@testing-library/react": "^11.0.2",
"@types/jest": "^26.0.13",
"@types/node": "^14.6.4",
"@types/react": "^16.9.49",
"@types/testing-library__react": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-macros": "2.8.0",
"cypress": "^5.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-emotion": "^10.0.32",
"jest-watch-typeahead": "^0.6.1",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"react-is": "^16.13.1",
"start-server-and-test": "^1.11.3",
"tailwindcss": "^1.8.6",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
}
}