-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
58
59
60
61
{
"name": "loginda",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"svgr": "npx @svgr/cli -d src/components/icons --ignore-existing --icon --typescript public/icons",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx}'",
"test": "jest -c test/jest.config.js"
},
"dependencies": {
"next": "^12.1.6",
"react": "17.0.2",
"react-dom": "17.0.2",
"express": "^4.16.4",
"next-compose-plugins": "^2.2.1",
"styled-components": "^5.2.1",
"axios": "^0.21.1",
"react-query": "^3.5.16",
"prettier": "^2.2.1"
},
"devDependencies": {
"@types/node": "^14.14.13",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"typescript": "^4.1.3",
"autoprefixer": "^10.1.0",
"tailwindcss": "^2.0.2",
"postcss": "^8.2.4",
"babel-plugin-styled-components": "^1.12.0",
"@svgr/cli": "^5.5.0",
"eslint": "^7.15.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"@testing-library/react": "^11.2.3",
"@testing-library/react-hooks": "^5.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"nock": "^13.0.6",
"isomorphic-unfetch": "^3.1.0",
"dotenv": "^8.2.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint -- --quiet --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}