-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.36 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
{
"name": "strava-challenge",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "yarn run lint:prettier && yarn run lint:js && yarn run lint:css",
"lint:js": "eslint . --ext ts,tsx --ignore-path .prettierignore --fix",
"lint:css": "stylelint \"**/*.css\" --fix --ignore-path .prettierignore",
"lint:prettier": "prettier --check .",
"prettier": "prettier --write ."
},
"dependencies": {
"@material-ui/core": "4.11.3",
"@material-ui/icons": "4.11.2",
"autoprefixer": "10.2.5",
"classnames": "2.2.6",
"moment": "2.29.1",
"mongoose": "^5.12.1",
"next": "10.0.8",
"postcss": "8.2.8",
"react": "17.0.1",
"react-dom": "17.0.1",
"swr": "0.5.3",
"tailwindcss": "2.0.3"
},
"devDependencies": {
"@types/node": "14.14.34",
"@types/react": "17.0.3",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"eslint": "7.22.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"prettier": "2.2.1",
"stylelint": "13.12.0",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-standard": "20.0.0",
"typescript": "4.1.3"
}
}