-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.66 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
{
"name": "gantries",
"version": "0.0.1",
"description": "See Singapore's ERP rates easily",
"scripts": {
"build": "cross-env REACT_APP_COMMIT_REF=$COMMIT_REF react-scripts --max_old_space_size=4096 build",
"eject": "react-scripts eject",
"fetch:rates": "npx ts-node scripts/fetch-rates.ts",
"gen:tileset-source": "npx ts-node scripts/generate-tileset-source.ts",
"gen:tileset": "npx ts-node scripts/generate-tileset.ts",
"gen:styles": "npx ts-node scripts/generate-style-layers.ts",
"gen:sprites": "npx ts-node scripts/generate-sprites.ts",
"gen:fonts": "npx ts-node scripts/generate-fonts.ts",
"lint": "eslint --ext .js,.ts,.tsx",
"start": "react-scripts start",
"test:scripts": "jest --testPathPattern=scripts/.*.test.ts",
"test": "react-scripts test",
"tsc": "tsc --noEmit"
},
"keywords": [
"erp",
"electronic road pricing"
],
"author": "Sebastian Quek",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@playwright/test": "^1.23.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^28.1.4",
"@types/lodash": "^4.14.182",
"@types/mapbox-gl": "^2.7.3",
"@types/node": "^18.0.0",
"@types/papaparse": "^5.3.2",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"babel-jest": "^28.1.2",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"form-data": "^4.0.0",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"simple-git-hooks": "^2.8.0",
"typescript": "^4.7.4"
},
"dependencies": {
"axios": "^0.27.2",
"csv-stringify": "^6.1.3",
"date-fns": "^2.28.0",
"lodash": "^4.17.21",
"mapbox-gl": "^2.9.1",
"papaparse": "^5.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-flip-move": "^3.0.4",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"styled-components": "^5.3.5",
"web-vitals": "^2.1.4"
},
"browserslist": {
"production": [
"defaults",
"not ie 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"simple-git-hooks": {
"pre-commit": "npm run tsc"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)"
]
}
}