-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.54 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
{
"name": "ncn-frontend-v2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "node_modules/next/dist/bin/next start -p $PORT",
"postinstall": "next build",
"lint": "next lint",
"lint-fix": "next lint . --cache --fix",
"e2e": "npx cypress run --spec 'cypress/e2e/e2e/*'",
"next:start": "next start",
"analyze": "cross-env ANALYZE=true next build"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"dependencies": {
"@auth0/nextjs-auth0": "^1.9.1",
"@chakra-ui/icons": "^2.0.2",
"@chakra-ui/react": "^2.2.1",
"@dnd-kit/core": "^6.0.5",
"@dnd-kit/modifiers": "^6.0.0",
"@dnd-kit/sortable": "^7.0.1",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"axios": "^0.27.2",
"color-hash": "^2.0.1",
"crypto-js": "^4.1.1",
"date-fns": "^2.29.1",
"focus-visible": "^5.2.0",
"framer-motion": "^6",
"lodash": "^4.17.21",
"moment": "^2.29.3",
"next": "12.2.0",
"nprogress": "^0.2.0",
"randomcolor": "^0.6.2",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-icons": "^4.4.0",
"react-intersection-observer": "^9.3.5",
"react-minimal-pie-chart": "^8.3.0",
"react-scroll": "^1.8.7",
"react-select": "^5.4.0",
"react-spinners": "^0.13.3",
"react-table-drag-select": "^0.3.1",
"react-use": "^17.4.0",
"sharp": "^0.30.7",
"swr": "^1.3.0",
"uuid": "^8.3.2",
"valtio": "^1.6.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.2.3",
"@types/auth0": "^2.35.3",
"@types/color-hash": "^1.0.2",
"@types/crypto-js": "^4.1.1",
"@types/gtag.js": "^0.0.10",
"@types/lodash": "^4.14.182",
"@types/node": "^18.6.3",
"@types/nprogress": "^0.2.0",
"@types/randomcolor": "^0.5.6",
"@types/react": "^18.0.15",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.6",
"@types/react-scroll": "^1.8.4",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"cross-env": "^7.0.3",
"cypress": "^10.3.0",
"eslint": "^8.19.0",
"eslint-config-next": "12.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}