-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.53 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
{
"name": "developer-portal-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon server.js",
"build": "next build",
"start": "node server.js",
"lint": "eslint ./ --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"{,!(node_modules)/**/}*.js\""
},
"dependencies": {
"@types/marked": "^4.0.1",
"axios": "^0.26.0",
"babel-eslint": "^10.1.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"isarray": "^2.0.5",
"marked": "^4.0.10",
"nanoid": "^3.2.0",
"next": "^12.1.0",
"nodemon": "2.0.15",
"prismjs": "^1.27.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.15.3",
"react-toastify": "^8.0.3",
"swagger-ui-react": "^4.6.1"
},
"prettier": "@imaginary-cloud/prettier-config",
"devDependencies": {
"@imaginary-cloud/eslint-config-react": "^1.0.1",
"@imaginary-cloud/prettier-config": "^1.0.0",
"@types/node": "^17.0.14",
"@types/react": "^17.0.21",
"@types/swagger-ui-react": "^4.1.1",
"autoprefixer": "^10.2.6",
"eslint": "8.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^11.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^2.5.1",
"postcss": "8.4.5",
"prettier": "^2.3.2",
"tailwindcss": "^2.2.4",
"typescript": "4.3.5"
}
}