-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
126 lines (126 loc) · 3.2 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "create-my-run",
"version": "0.4.0",
"author": "Gaya Kessler (https://theclevernode.com)",
"private": true,
"homepage": "https://createmy.run",
"engines": {
"node": "12.11.1",
"npm": "6.11.3"
},
"dependencies": {
"@material-ui/core": "^4.10.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^10.4.3",
"@testing-library/user-event": "^12.0.11",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/history": "^4.7.6",
"@types/jest": "^26.0.3",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^14.0.14",
"@types/node-fetch": "^2.5.7",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/react-leaflet": "^2.5.2",
"@types/react-redux": "^7.1.9",
"cors": "^2.8.5",
"express": "^4.17.1",
"gpx-builder": "^3.3.0",
"history": "^5.0.0",
"leaflet": "^1.6.0",
"lodash.debounce": "^4.0.8",
"node-fetch": "^2.6.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-leaflet": "^2.7.0",
"react-leaflet-arrowheads": "^1.0.6",
"react-redux": "^7.2.0",
"react-scripts": "3.4.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"serve-static": "^1.14.1",
"ts-node": "^8.10.2",
"typescript": "~3.9.5"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"postinstall": "ENV=production npm run build",
"server": "ts-node -r dotenv/config --project ./src/server/tsconfig.json ./src/server/index.ts",
"lint": "eslint . --ext .ts,.tsx"
},
"eslintConfig": {
"extends": [
"react-app",
"airbnb",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"overrides": [
{
"files": [
"**/*.ts?(x)"
],
"rules": {
"react/prop-types": 0,
"react/jsx-props-no-spreading": 0,
"react/jsx-filename-extension": [
1,
{
"extensions": [
".tsx"
]
}
],
"import/prefer-default-export": 0,
"import/extensions": [
"error",
"ignorePackages",
{
"ts": "never",
"tsx": "never"
}
]
}
}
],
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [
".ts",
".tsx"
]
},
"import/resolver": {
"typescript": {
"alwaysTryTypes": true
}
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint-config-airbnb": "^18.2.0",
"eslint-import-resolver-typescript": "^2.0.0",
"source-map-explorer": "^2.4.2"
}
}