-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.61 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
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"test": "jest --coverage --testPathIgnorePatterns='e2e/*'",
"test:watch": "jest --testPathIgnorePatterns='e2e/*' --watchAll",
"test:all": "jest --coverage --runInBand --detectOpenHandles",
"lint": "npx prettier --check 'app/**/*.js' 'test/**/*.js' 'pages/**/*.js'",
"lint:fix": "npx prettier --write 'app/**/*.js' 'test/**/*.js' 'pages/**/*.js'",
"start": "next start",
"start-server": "next start -H 0.0.0.0 -p ${PORT:-8080}"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@hashgraph/sdk": "^2.6.0",
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^1.0.6",
"@types/react": "^18.0.15",
"axios": "^0.27.2",
"dotenv": "^8.2.0",
"next": "^12.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@tailwindcss/forms": "^0.5.2",
"autoprefixer": "^10.4.7",
"babel-eslint": "^9.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-nextjs": "^1.0.6",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^26.4.0",
"node-mocks-http": "^1.8.1",
"postcss": "^8.4.14",
"prettier": "1.19.1",
"tailwindcss": "^3.1.6"
}
}