-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.79 KB
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
{
"name": "daedongyeomap-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p ${PORT}",
"lint": "eslint pages --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --write '**/*.{ts,tsx}'",
"push": "gcloud builds submit"
},
"dependencies": {
"@apollo/client": "^3.3.6",
"@material-ui/core": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"base64url": "^3.0.1",
"deep-merge": "^1.0.0",
"deepmerge": "^4.2.2",
"dotenv-webpack": "^6.0.0",
"graphql": "^15.4.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mapbox-gl": "^2.3.0",
"mapbox-service": "^0.0.14",
"next": "10.0.5",
"next-auth": "^3.27.3",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-mapbox-gl": "^5.1.1",
"react-toastify": "^6.2.0",
"sass": "^1.34.1",
"styled-components": "^5.2.1",
"swiper": "^6.7.0",
"urlencode": "^1.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"lint-staged": {
"src/**/*.{ts,tsx}": "npm run lint:fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}