-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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
{
"name": "streamer-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write \"**/*.{js,ts,tsx}\"",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test-all": "yarn lint && yarn type-check && yarn test"
},
"dependencies": {
"@reduxjs/toolkit": "^1.4.0",
"axios": "^0.21.1",
"dayjs": "^1.8.34",
"ismobilejs": "^1.1.1",
"next": "^10.0.8",
"next-i18next": "^8.1.1",
"next-redux-wrapper": "^6.0.2",
"nookies": "^2.4.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.1",
"styled-components": "^5.1.1",
"swr": "^0.3.0"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@types/react": "^16.9.46",
"@types/redux-logger": "^3.0.8",
"@types/styled-components": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-jest": "^26.3.0",
"babel-plugin-styled-components": "^1.11.1",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.20.6",
"jest": "^26.4.2",
"jest-watch-typeahead": "^0.6.0",
"redux-logger": "^3.0.6",
"typescript": "^3.9.7"
}
}