-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.99 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
{
"name": "my-garmin",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "NODE_ENV=test jest --watch",
"test:coverage": "NODE_ENV=test jest --passWithNoTests --detectOpenHandles --coverage && open ./coverage/lcov-report/index.html",
"test:pre-push": "NODE_ENV=test jest --passWithNoTests --detectOpenHandles --coverage --watchAll=false && open ./coverage/lcov-report/index.html",
"lint": "eslint --fix --config .eslintrc.js 'src/**/*.{ts,tsx,js}'",
"lint:prepush": "eslint --fix --config .eslintrc.prepush.js 'src/**/*.{ts,tsx,js}'",
"analyze": "ANALYZE=true next build",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.3.0",
"next": "10.1.3",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.3.0",
"@emotion/eslint-plugin": "^11.2.0",
"@emotion/jest": "^11.3.0",
"@next/bundle-analyzer": "^10.1.3",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/svg-sprite-loader": "^3.9.3",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"imagemin-svgo": "^9.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"next-compose-plugins": "^2.2.1",
"next-optimized-images": "^2.6.2",
"prettier": "^2.2.1",
"svg-sprite-loader": "^6.0.5",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix --config .eslintrc.precommit.js"
]
}
}