-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.59 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
{
"name": "next-js",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "tsc --noEmit && npm run lint:js && npm run lint:css",
"lint:js": "eslint . --cache --fix",
"lint:css": "stylelint 'src/**/*.{scss,css}' --fix",
"test": "jest --watch",
"test:ci": "jest --ci",
"prepare": "husky install",
"postinstall": "patch-package"
},
"dependencies": {
"next": "^13.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"autoprefixer": "^10.4.13",
"eslint": "^8.28.0",
"eslint-config-next": "^13.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "^5.10.3",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"patch-package": "^7.0.0",
"postcss": "^8.4.19",
"prettier": "^2.8.0",
"prettier-eslint": "^15.0.1",
"sass": "^1.56.1",
"stylelint": "^15.6.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard-scss": "^9.0.0",
"stylelint-declaration-strict-value": "^1.9.2",
"stylelint-prettier": "^3.0.0",
"stylelint-scss": "^5.0.0",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"typescript": "5.0.4",
"typescript-plugin-css-modules": "^5.0.1"
}
}