-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.31 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
54
55
56
57
{
"name": "update_tax_form",
"version": "1.0.0",
"description": "simple demo to update the data in forms",
"author": "Mohamed Hussain S H",
"license": "MIT",
"scripts": {
"dev": "next dev -p 3030",
"build": "next build",
"start": "next start -p 3030",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --ci",
"test:coverage": "jest --coverage",
"e2e:ci": "cypress run",
"e2e": "cypress open",
"configure-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json}": [
"prettier --write"
],
"**/*.{css,scss}": [
"prettier --write"
]
},
"dependencies": {
"next": "latest",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@svgr/webpack": "^6.4.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.2.0",
"@testing-library/user-event": "14.2.0",
"cypress": "^10.9.0",
"eslint": "^8.24.0",
"eslint-config-next": "^12.3.1",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-testing-library": "^5.7.0",
"husky": "^8.0.1",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.0",
"lint-staged": "^13.0.3",
"sass": "^1.55.0"
}
}