-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
82 lines (82 loc) · 2.31 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
{
"name": "whatsapp",
"version": "1.0.0",
"description": "Whatsapp Web Using Next.js",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/renganatha10/whatsapp-PWA.git"
},
"keywords": [
"Next.js"
],
"author": "Renganatha",
"license": "ISC",
"bugs": {
"url": "https://github.com/renganatha10/whatsapp-PWA/issues"
},
"homepage": "https://github.com/renganatha10/whatsapp-PWA#readme",
"scripts": {
"dev": "next dev",
"build": "next build",
"prebuild": "find src -name __tests__ -type d -exec rm -rf {} \\;",
"start": "next start",
"test": "jest",
"storybook": "start-storybook -p 6006 -c .storybook",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@sentry/browser": "^5.21.1",
"@sentry/integrations": "^5.21.1",
"@sentry/node": "^5.21.1",
"@sentry/webpack-plugin": "^1.12.1",
"@zeit/next-source-maps": "0.0.4-canary.1",
"autoprefixer": "^9.7.4",
"dayjs": "^1.8.22",
"isomorphic-unfetch": "^3.0.0",
"next": "9.3.2",
"next-compose-plugins": "^2.2.0",
"next-offline": "^5.0.0",
"next-redux-saga": "^4.1.2",
"next-redux-wrapper": "^5.0.0",
"postcss-import": "^12.0.1",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-redux": "^7.2.0",
"react-window": "^1.8.5",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"tailwindcss": "^1.2.0"
},
"devDependencies": {
"@storybook/react": "^5.3.14",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.1",
"@types/jest": "^25.1.3",
"@types/next-redux-saga": "^3.0.2",
"@types/node": "^13.7.6",
"@types/react": "^16.9.23",
"@types/react-redux": "^7.1.7",
"@types/react-window": "^1.8.1",
"@types/styled-jsx": "^2.2.8",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"husky": "^4.2.3",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"typescript": "^3.8.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}