-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.04 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
66
67
{
"name": "09090",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "prettier --write --check --ignore-unknown \"**/*\" && stylelint --fix \"**/*.scss\" && next lint --fix && tsc --noEmit"
},
"browserslist": [
"defaults",
"not IE 11",
"not op_mini all"
],
"eslintIgnore": [
".eslintrc.js",
"next.config.js"
],
"dependencies": {
"clsx": "^1.2.1",
"next": "12.3.1",
"next-pwa": "^5.6.0",
"next-reveal": "^1.0.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-type-animation": "^2.1.1",
"schema-dts": "^1.1.0"
},
"devDependencies": {
"@types/node": "18.7.23",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/react-type-animation": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-sonarjs": "^0.15.0",
"postcss": "^8.4.17",
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"sass": "^1.55.0",
"stylelint": "^14.13.0",
"stylelint-a11y": "^1.2.3",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-standard": "^28.0.0",
"stylelint-css-modules": "^1.2.2",
"stylelint-csstree-validator": "^2.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.5.0",
"stylelint-declaration-strict-value": "^1.9.0",
"stylelint-high-performance-animation": "^1.6.0",
"stylelint-no-unsupported-browser-features": "^6.0.1",
"stylelint-use-nesting": "^4.0.0",
"typescript": "4.8.4"
}
}