-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
92 lines (92 loc) · 2.72 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
{
"name": "kha-ching",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "node ./bootup.js & NODE_OPTIONS=--max-old-space-size=1024 TZ=Asia/Kolkata next start -H 0.0.0.0 -p ${PORT:-8080}",
"lint": "next lint --quiet",
"test": "jest ./__tests__ --testPathIgnorePatterns support/*",
"unit-test": "jest ./__tests__/unit --detectOpenHandles",
"int-test": "jest ./__tests__/integration",
"format": "prettier-standard --format"
},
"lint-staged": {
"*": ["prettier-standard --lint"]
},
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@material-ui/pickers": "^3.2.10",
"@types/styled-jsx": "^3.4.4",
"axios": "^0.21.1",
"bluebird": "^3.7.2",
"bullmq": "^1.48.2",
"csvtojson": "^2.0.10",
"date-fns": "^2.19.0",
"dayjs": "^1.10.4",
"esm": "^3.2.25",
"fyers-api": "^1.1.0",
"ioredis": "^4.22.0",
"kiteconnect": "^3.2.0",
"lodash": "^4.17.21",
"memoizee": "^0.4.15",
"nanoid": "^3.1.23",
"next": "^11.1.0",
"next-iron-session": "^4.1.11",
"next-pwa": "5.2.24",
"qs": "^6.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-swipeable-views": "^0.14.0",
"react-timeago": "^5.2.0",
"react-toastify": "^7.0.4",
"redis": "^3.1.2",
"redis-memoizer": "^1.0.2",
"request": "^2.88.2",
"swr": "^0.4.2",
"trace-unhandled": "^2.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/react": "^17.0.16",
"@typescript-eslint/eslint-plugin": "4",
"@typescript-eslint/parser": "^4.29.0",
"axios-mock-adapter": "^1.19.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.6",
"dotenv": "^10.0.0",
"enzyme": "^3.11.0",
"eslint": "7",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "11",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "4",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^5.0.9",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.6",
"jest-when": "^3.3.1",
"lint-staged": "^10.5.4",
"mockserver": "^3.1.1",
"prettier-standard": "^16.4.1",
"react-test-renderer": "^17.0.2",
"typescript": "^4.3.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"cacheDirectories": [".next/cache"]
}