-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 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
{
"name": "ktmap",
"description": "a location-based next arrivals app for the trimet transit system",
"main": "src/index.js",
"scripts": {
"aws": "rm -rf dist/ && cross-env NODE_ENV=production webpack",
"deploy": "npm run aws && node scripts/deploy.js",
"build": "webpack --config webpack.prod.config.js",
"start": "cross-env NODE_ENV=development webpack-dev-server --hot --config webpack.config.js",
"test": "jest --verbose",
"types:check": "tsc --noEmit"
},
"author": "worc <[email protected]>",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"aws-sdk": "^2.546.0",
"axios": "^1.3.4",
"babel-loader": "^8.0.6",
"chai": "^4.1.2",
"date-fns": "^2.29.3",
"lodash": "^4.17.21",
"mapbox-gl": "^2.13.0",
"moment": "^2.29.4",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-map-gl": "^7.0.21",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/chai": "^4.3.4",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.28",
"@types/react-map-gl": "^6.1.3",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"cross-env": "^7.0.3",
"ejs": "^3.1.9",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"webpack": "^5.76.2",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.0"
}
}