-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
{
"name": "fab-client",
"version": "1.0.0",
"description": "A client to access your Fab account.",
"main": "index.ts",
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"test": "NEXT_PUBLIC_ENVIRONMENT=test jest --watch",
"test-coverage": "NEXT_PUBLIC_ENVIRONMENT=test jest --coverage --collectCoverageFrom='./src/**'",
"prepare": "husky install",
"lint": "eslint . --config .eslintrc --ext .ts --fix",
"format": "prettier --write .",
"pre-commit": "npm run lint && npm run format"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"iron-session": "^6.1.3",
"moment-timezone": "^0.5.34",
"next": "^12.1.6",
"nextjs-progressbar": "^0.0.14",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.4",
"@types/node": "^17.0.41",
"@types/react": "^18.0.12",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"lint-staged": "^13.0.1",
"msw": "^0.42.3",
"prettier": "^2.6.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.3"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json}": "npm run pre-commit"
}
}