-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.28 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
{
"name": "template-project",
"version": "0.0.1",
"license": "MIT",
"author": "Timothy Merritt",
"description": "A frontend template",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --config jest.config.js",
"test:changed": "jest --config jest.config.js -o",
"test:watch": "yarn test --watch",
"make": "plop",
"atom": "yarn plop component atom",
"molecule": "yarn plop component molecule",
"organism": "yarn plop component organism",
"wrapper": "yarn plop component wrapper",
"hook": "yarn plop hook",
"page": "yarn plop page",
"context": "yarn plop context",
"prepare": "husky install",
"format": "prettier --write './{src,templates}/**/*'",
"lint": "eslint '{src,templates}/**/*.{js,jsx,ts,tsx}'",
"lint-fix": "yarn lint --fix",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-react": "^7.16.7",
"@emotion/css": "^11.5.0",
"@emotion/react": "^11.4.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@fontsource/inter": "^4.5.0",
"chalk": "^5.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react-hooks": "^4.3.0",
"framer-motion": "^6.2.6",
"next": ">=12.2.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"sass": "^1.36.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-typescript": "^7.16.0",
"@emotion/babel-plugin": "^11.3.0",
"@next/eslint-plugin-next": "^12.2.4",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/react": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-plugin-macros": "^3.1.0",
"eslint": "^8.9.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": ">=10",
"plop": "^3.0.5",
"prettier": "^2.3.2",
"tailwindcss": "^3.0.23",
"twin.macro": "^2.8.1",
"typescript": "^4.4.4"
},
"resolutions": {
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.14"
},
"lint-staged": {
"**/*.(js|ts|tsx)": [
"eslint --fix"
],
"**/*.(js|json|ts|tsx)": [
"prettier --write"
]
}
}