-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.82 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": "buddhism-dict",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 next dev",
"build": "next build",
"lint": "eslint \"**/*.{js,ts,tsx}\" --cache",
"lint:fix": "run-s \"lint --fix\"",
"pre-commit": "lint-staged",
"pre-push": "run-s type-check",
"prepare": "is-ci || husky install",
"start": "next start",
"start:local": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 next start",
"type-check": "tsc --pretty --noEmit",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@emotion/babel-plugin": "^11.3.0",
"@next/eslint-plugin-next": "^12.0.4",
"@svgr/cli": "^5.5.0",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^27.0.3",
"@types/jsonschema": "^1.1.1",
"@types/node": "^16.11.10",
"@types/node-localstorage": "^1.3.0",
"@types/npmlog": "^4.1.3",
"@types/ramda": "^0.27.40",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-text-mask": "^5.4.7",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"babel-jest": "^27.3.1",
"cross-env": "^7.0.3",
"eslint": "<8.0.0",
"eslint-config-prettier": "^8.2.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-alias": "^1.2.0",
"eslint-plugin-jest-dom": "^3.8.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^5.0.0",
"fast-xml-parser": "^4.0.0-beta.2",
"husky": "^7.0.4",
"jest": "^27.0.1",
"jest-environment-node": "^27.3.1",
"jest-junit": "^13.0.0",
"jest-watch-typeahead": "^1.0.0",
"lint-staged": "^12.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"typescript": "^4.2.4",
"webpack": "5.64.2"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix --cache"
]
},
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.5",
"@mui/material": "^5.0.6",
"@next/bundle-analyzer": "^12.0.2",
"@types/date-fns": "^2.6.0",
"date-fns": "^2.25.0",
"is-ci": "^3.0.1",
"jsonschema": "^1.4.0",
"mongodb": "^4.1.3",
"next": "^12.0.1",
"next-compose-plugins": "^2.2.1",
"next-connect": "^0.11.0",
"npmlog": "^6.0.0",
"ramda": "^0.27.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.30.0",
"twilio": "^3.70.0"
}
}