-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "top-app",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "next dev",
"export": "next export",
"debug": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"stylelint": "stylelint \"**/*.css\" --fix"
},
"dependencies": {
"axios": "^0.21.1",
"cross-env": "^7.0.3",
"date-fns": "^2.23.0",
"framer-motion": "^4.1.17",
"next": "11.1.0",
"prop-types": "^15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.13.0",
"react-yandex-metrika": "^2.6.0"
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"@types/classnames": "^2.3.1",
"@types/node": "^16.6.1",
"@types/react": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"classnames": "^2.2.6",
"eslint": "^7.32.0",
"eslint-config-next": "11.1.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-order-config-standard": "^0.1.3",
"typescript": "^4.3.5"
}
}