-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.9 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
{
"name": "nextcrazy",
"version": "0.3.0",
"keywords": [
"nextcrazy",
"nextjs",
"boilerplate",
"tailwind",
"nextcrazy-cli"
],
"description": "A Next.js boilerplate with typescript, multilanguages, authentication, tailwind and a CLI",
"scripts": {
"dev": "next",
"production": "env-cmd -f .env.production next build",
"production:start": "env-cmd -f ./.env.production next start",
"testing": "env-cmd -f .env.testing next build",
"testing:start": "env-cmd -f ./.env.testing next start",
"type-check": "tsc",
"prettier": "prettier --write package.json"
},
"dependencies": {
"@next/bundle-analyzer": "^10.0.5",
"@svgr/webpack": "^5.5.0",
"axios": "^0.20.0",
"js-cookie": "^2.2.1",
"next": "^10.0.6",
"next-build-id": "^3.0.0",
"next-cookies": "^2.0.3",
"next-seo": "^4.7.3",
"nprogress": "^0.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-gtm-module": "^2.0.11",
"react-hook-form": "^7.33.0",
"tailwind": "^4.0.0",
"validator": "^13.1.17"
},
"devDependencies": {
"@types/js-cookie": "^2.2.6",
"@types/node": "^14.11.1",
"@types/nprogress": "^0.2.0",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@types/react-gtm-module": "^2.0.0",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"env-cmd": "^10.1.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"postcss": "8.1.9",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-nested": "^4.2.3",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.1.2",
"tailwindcss": "^2.1.2",
"tailwindcss-dir": "^4.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
},
"license": "MIT"
}