-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.63 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
{
"name": "@piouson/templates-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run build-development",
"build-development": "cross-env TARGET_ENV=development npm run build-export",
"build-staging": "cross-env TARGET_ENV=staging npm run build-export",
"build-production": "npm run build-export",
"build-export": "next build && next export",
"start": "next start",
"test": "jest --watch",
"lint": "next lint --fix",
"format": "prettier --ignore-path .gitignore --ignore-unknown --write .",
"prepare": "husky install"
},
"dependencies": {
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@svgr/webpack": "^6.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@typescript-eslint/parser": "^5.40.0",
"autoprefixer": "^10.4.12",
"cross-env": "^7.0.3",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "^5.9.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.17",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.1.8"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --max-warnings=0 --fix",
"prettier --ignore-unknown --write"
],
"*": "prettier --ignore-unknown --write"
}
}