-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
73 lines (73 loc) · 2.19 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
{
"name": "entitree",
"version": "3.0.0",
"private": true,
"scripts": {
"build": "next build",
"debug": "NODE_OPTIONS='--inspect' next dev -p 3009",
"dev": "next -p 3009",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|tsx)\" --write",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|tsx)\"",
"sitemap": "node scripts/generator.js",
"start": "next start -p $PORT",
"test": "jest",
"type-check": "tsc",
"upgrade:interactive": "yarn upgrade-interactive --latest"
},
"dependencies": {
"@entitree/helper": "0.6.1",
"@entitree/shared": "0.0.2",
"@reduxjs/toolkit": "1.9.3",
"@types/luxon": "3.2.0",
"axios": "0.27.2",
"bootstrap": "4.6.0",
"cookie": "0.5.0",
"entitree-flex": "0.4.1",
"geni-api": "0.0.1",
"jsonp-promise": "0.1.2",
"local-storage": "2.0.0",
"luxon": "3.3.0",
"next": "13.2.4",
"next-redux-wrapper": "8.1.0",
"pluralize": "8.0.0",
"react": "18.2.0",
"react-bootstrap": "1.6.0",
"react-cookie": "4.1.1",
"react-div-100vh": "0.7.0",
"react-dom": "18.2.0",
"react-draggable": "4.4.5",
"react-ga4": "2.1.0",
"react-icons": "4.8.0",
"react-redux": "7.2.8",
"react-share": "4.4.1",
"react-zoom-pan-pinch": "3.0.4",
"redux": "4.1.2",
"redux-persist": "6.0.0",
"reselect": "4.1.7",
"styled-components": "5.3.9"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@types/jest": "29.5.0",
"@types/node": "18.15.3",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/styled-components": "5.1.26",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"eslint": "8.36.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.7.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "29.5.0",
"prettier": "2.8.5",
"react-router-sitemap": "1.2.0",
"typescript": "5.0.2"
}
}