-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.47 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
{
"name": "nextjs-tailwind-typescript-starter",
"version": "0.1.0",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@blueprintjs/core": "^3.28.2",
"next": "^9.4.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.1.1",
"twin.macro": "^1.4.1"
},
"devDependencies": {
"@types/node": "^14.0.13",
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"stylelint-config-recommended": "^3.0.0",
"tailwindcss": "^1.4.6",
"typescript": "^3.9.5",
"typescript-plugin-tw-template": "^2.0.1"
},
"babelMacros": {
"twin": {
"config": "./tailwind.config.js",
"preset": "styled-components",
"autoCssProp": false,
"hasSuggestions": true,
"debug": false
}
}
}