-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.96 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
{
"name": "highwayvisualizer",
"version": "0.0.1",
"description": "Visualize a map diary",
"exports": "./client/index.tsx",
"scripts": {
"start": "NODE_ENV=production node server",
"debug": "node --inspect server",
"react": "webpack serve --config webpack.config.js",
"build": "webpack --config webpack.config.production.js",
"migrate": "db-migrate db:create highways -e init && db-migrate up",
"reset": "redis-cli flushall && db-migrate reset && db-migrate db:drop highways",
"seed": "node db/seed.js",
"lint": "eslint client/components client/components/reducers client/types client/utils client/__tests__",
"test": "jest"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/IamTechknow/HighwayVisualizer.git"
},
"author": "Edmond Lee",
"license": "MIT",
"dependencies": {
"compression": "^1.7.4",
"db-migrate": "^1.0.0-beta.18",
"db-migrate-mysql": "^2.2.0",
"express": "^4.17.1",
"express-validator": "^6.10.0",
"leaflet": "^1.8.0",
"leaflet-sidebar-v2": "^3.2.3",
"mysql2": "^2.2.5",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-feather": "^2.0.9",
"react-leaflet": "^4.0.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"redis": "^4.0.4",
"yargs": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.7",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.1",
"@types/express": "^4.17.11",
"@types/jest": "^27.0.1",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"@types/react-leaflet": "^2.5.2",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"autoprefixer": "^10.0.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^28.0.2",
"babel-loader": "^8.2.1",
"cli-progress": "^3.8.2",
"css-loader": "^6.1.0",
"cssnano": "^5.0.6",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"jest": "^28.0.2",
"morgan": "^1.10.0",
"postcss": "^8.1.9",
"postcss-loader": "^6.1.0",
"react-test-renderer": "^18.0.0",
"shapefile": "^0.6.6",
"style-loader": "^3.0.0",
"ts-jest": "^27.0.3",
"typescript": "^4.1.2",
"webpack": "^5.6.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.0.0"
},
"bugs": {
"url": "https://github.com/IamTechknow/HighwayVisualizer/issues"
},
"homepage": "https://github.com/IamTechknow/HighwayVisualizer#readme"
}