-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.71 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "app-nextjs-ts-react-redux",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"tslint": "tslint -p . -c tslint.json",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --coverageDirectory=output/coverage/jest",
"prettier:check": "prettier --write \"**/*.+(ts|tsx)\"",
"prettier:write": "prettier --write \"**/*.+(ts|tsx)\"",
"cypress": "cypress open",
"ts-coverage": "typescript-coverage-report",
"export": "next export",
"deploy": "npm run build && npm run export",
"heroku-postbuild": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(ts|tsx)": [
"prettier --write",
"git add",
"jest --findRelatedTests",
"tslint -p . -c tslint.json"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"typeCoverage": {
"atLeast": 90
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@reduxjs/toolkit": "^1.3.4",
"axios": "^0.19.2",
"es6-promise": "^4.2.8",
"isomorphic-unfetch": "^3.0.0",
"next": "^9.3.4",
"next-redux-saga": "^4.1.2",
"next-redux-wrapper": "^5.0.0",
"nookies": "^2.2.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hook-form": "^5.5.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-actions": "^2.6.5",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@testing-library/cypress": "^6.0.0",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.2",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@types/react": "^16.9.34",
"axios-mock-adapter": "^1.18.1",
"babel-jest": "^25.3.0",
"babel-plugin-module-resolver": "^4.0.0",
"bulma": "^0.8.2",
"cypress": "^4.4.1",
"husky": "^4.2.5",
"jest": "^25.3.0",
"lint-staged": "^10.1.3",
"next-fonts": "^1.0.3",
"next-sass": "^1.0.3",
"node-sass": "^4.13.1",
"prettier": "^2.0.4",
"react-test-renderer": "^16.13.1",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.4",
"redux-persist": "^6.0.0",
"ts-jest": "^25.3.1",
"tslint": "^6.1.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-react-hooks": "^2.2.2",
"typescript": "^3.8.3",
"typescript-coverage-report": "^0.1.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 120,
"semi": false
}
}