forked from Rechdan/wyd-private-editors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "wyd-private-editors",
"version": "1.0.0",
"author": "Nelson Faiçal Rechdan <[email protected]>",
"license": "MIT",
"scripts": {
"upgrade": "ncu -u && yarn --check-files",
"dev": "nodemon -w \"./.env\" -w \"./.babelrc\" -w \"./next.config.js\" -e \"*\" -x \"yarn run dev:run\"",
"dev:run": "next dev",
"build": "next build",
"start": "next start",
"prod-test": "yarn run build && yarn run start",
"deploy-prod": "dotenv -e .env -- sh deploy.sh"
},
"dependencies": {
"classnames": "2.3.2",
"lodash": "4.17.21",
"next": "13.2.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-ga4": "2.1.0",
"react-hook-form": "7.43.8",
"styled-components": "5.3.9",
"typed-buffer-struct": "0.1.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "13.2.4",
"@types/lodash": "4.14.191",
"@types/node": "18.15.9",
"@types/react": "18.0.29",
"@types/react-dom": "18.0.11",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"babel-plugin-styled-components": "2.0.7",
"dotenv-cli": "7.1.0",
"eslint": "8.36.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-perf": "3.3.1",
"nodemon": "2.0.22",
"typescript": "5.0.2"
}
}