-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "nextwind",
"description": "Nextjs, Typescript, Tailwindcss template.",
"version": "1.0.0",
"author": {
"email": "kalwabedrzk@pm.me",
"name": "Kalwabed Rizki",
"url": "https://github.com/kaliwa"
},
"repository": {
"url": "https://github.com/kaliwa/nextwind"
},
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "eslint \"src/*.{ts,tsx}\" \"*.config.js\"",
"type-check": "tsc --noEmit",
"test": "npm run type-check && npm run lint"
},
"dependencies": {
"next": "latest",
"next-seo": "^4.13.0",
"nprogress": "^0.2.0",
"react": "16.14.0",
"react-dom": "16.14.0"
},
"devDependencies": {
"@types/node": "^14.11.10",
"@types/nprogress": "^0.2.0",
"@types/react": "^16.9.53",
"eslint": "6.8.0",
"eslint-config-blvd": "^1.0.2",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"next-sitemap": "^1.2.10",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.1.2",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0",
"tailwindcss": "^1.9.3",
"typescript": "^4.0.3"
}
}