-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.07 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.07 KB
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
99
100
101
102
103
104
105
{
"name": "next-ts-starter",
"version": "1.0.0",
"description": "A Next.JS powered typescript starter with styled components, styled-system, jest, @testing-library and framer-motion",
"scripts": {
"dev": "next",
"build": "next build",
"build:analyze": "cross-env ANALYZE=true next build",
"start": "next start",
"lint": "eslint --no-error-on-unmatched-pattern --cache --fix --report-unused-disable-directives {src,pages}/**/*.{js,ts,jsx,tsx}",
"ts:check": "tsc --noEmit --skipLibCheck --pretty",
"test": "jest --runInBand --coverage=false",
"test:ci": "yarn test --ci",
"test:watch": "yarn test --watch",
"cy:open": "yarn --cwd cypress cy:open",
"cy:run": "yarn --cwd cypress cy:run",
"cy:run:cy": "yarn --cwd cypress cy:run:ci",
"prepare": "husky install"
},
"keywords": [
"starter",
"template",
"styled-components",
"styled-system",
"framer-motion",
"next",
"nextjs",
"react",
"testing",
"jest",
"cypress",
"typescript"
],
"repository": {
"url": "https://github.com/Liinkiing/next-ts-starter",
"type": "git"
},
"bugs": {
"url": "https://github.com/Liinkiing/next-ts-starter/issues"
},
"author": "Omar Jbara <omar.jbara2@gmail.com>",
"dependencies": {
"@jest/globals": "^27.3.1",
"@next/bundle-analyzer": "^12.0.1",
"@styled-system/should-forward-prop": "^5.1.5",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"babel-jest": "^27.3.1",
"dotenv-load": "^2.0.0",
"framer-motion": "^5.0.0",
"jest": "^27.3.1",
"jest-styled-components": "^7.0.5",
"next": "^12.0.1",
"next-compose-plugins": "^2.2.1",
"next-fonts": "^1.5.1",
"next-images": "^1.8.1",
"nprogress": "^0.2.0",
"polished": "^4.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.3",
"styled-system": "^5.1.5",
"ts-jest": "^27.0.7"
},
"devDependencies": {
"@liinkiing/eslint-config": "^1.2.10",
"@liinkiing/prettier-config": "^1.3.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/styled-components": "^5.1.15",
"@types/styled-system": "^5.1.13",
"@types/styled-system__css": "^5.0.16",
"@types/styled-system__should-forward-prop": "^5.1.2",
"@types/webpack": "^5.28.0",
"babel-plugin-styled-components": "^1.13.3",
"eslint": "^8.17.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"prettier": "^2.6.2",
"typescript": "^4.4.4"
},
"resolutions": {
"@types/react": "^17.0.33"
},
"prettier": "@liinkiing/prettier-config",
"lint-staged": {
"*.md": [
"npx prettier --parser markdown --write"
],
"*.{css,scss,less}": [
"npx prettier --parser css --write"
],
"*.json": [
"npx prettier --parser json --write"
],
"*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write",
"jest -c jest.config.js --bail --runInBand --findRelatedTests --coverage=false"
]
}
}