-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
{
"name": "with-typescript",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"type-check": "tsc",
"lint": "eslint -c .eslintrc.js ./**/*.tsx ./**/*.ts"
},
"dependencies": {
"@material-ui/core": "4.11.0",
"@zeit/next-css": "1.0.1",
"firebase": "7.20.0",
"isomorphic-unfetch": "3.1.0",
"mapbox-gl": "1.12.0",
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/lodash": "^4.14.161",
"@types/mapbox-gl": "1.11.2",
"@types/node": "14.10.0",
"@types/react": "16.9.49",
"@types/react-dom": "16.9.8",
"@typescript-eslint/eslint-plugin": "4.1.0",
"@typescript-eslint/parser": "4.1.0",
"eslint": "7.8.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.1",
"husky": "4.3.0",
"lint-staged": "10.3.0",
"lodash": "^4.17.21",
"prettier": "2.1.1",
"typescript": "4.0.2"
},
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,scss,md}": [
"prettier --write"
]
}
}