-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.13 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.13 KB
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": "dimipay-pg-audit-demo",
"description": "dimipay",
"version": "1.0.0",
"private": true,
"main": "dist/app.js",
"scripts": {
"dev": "concurrently \"tsc --watch --project server.tsconfig.json\" \"nodemon dist/app.js\"",
"build": "next build & tsc --project server.tsconfig.json",
"start": "yarn node dist/app.js",
"front-dev": "next dev",
"postinstall": "yarn dlx husky install",
"lint": "eslint --ext .tsx,.ts .",
"lint:fix": "eslint --ext .tsx,.ts . --fix & prettier --write -u ."
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/serialize": "^1.1.0",
"@emotion/styled": "^11.10.0",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "latest",
"axios": "^0.27.2",
"cookies-next": "^2.1.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.34.2",
"react-spinners": "^0.13.4",
"recoil": "^0.7.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@emotion/babel-plugin": "^11.10.2",
"@next/eslint-plugin-next": "^12.2.5",
"@svgr/webpack": "^6.3.1",
"@types/express": "^4.17.13",
"@types/node": "^18.7.11",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"airbnb": "^0.0.2",
"babel-eslint": "^10.1.0",
"babel-plugin-macros": "^3.1.0",
"concurrently": "^7.3.0",
"eslint": "^8.22.0",
"eslint-config": "^0.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0"
},
"packageManager": "yarn@3.2.2"
}