-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.19 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
{
"name": "somul-frontend",
"version": "1.0.0",
"dependencies": {
"@apollo/client": "~3.0.0-beta.44",
"@craco/craco": "~5.6.4",
"@sentry/browser": "~5.15.5",
"@types/react-router-dom": "~5.1.5",
"apollo-cache-inmemory": "~1.6.5",
"apollo-cache-persist": "~0.1.1",
"apollo-client": "~2.6.8",
"apollo-link": "~1.2.14",
"apollo-link-http": "~1.5.17",
"apollo-link-rest": "~0.8.0-beta.0",
"axios": "~0.19.2",
"disable-scroll": "~0.5.1",
"dotenv": "~8.2.0",
"graphql": "~15.0.0",
"graphql-anywhere": "~4.2.6",
"graphql-tag": "~2.10.3",
"moment": "~2.26.0",
"qs": "~6.9.4",
"react": "~16.12.0",
"react-apollo": "~3.1.5",
"react-app-polyfill": "~1.0.6",
"react-dom": "~16.12.0",
"react-ga": "~2.7.0",
"react-grid-system": "~6.3.0",
"react-moment": "~0.9.7",
"react-router-dom": "~5.2.0",
"react-scripts": "3.4.0",
"scroll-to": "~0.0.2",
"smooth-scroll-into-view-if-needed": "~1.1.27",
"styled-components": "~5.0.1",
"typescript": "~3.7.2"
},
"scripts": {
"start": "cross-env-shell NODE_ENV=development REACT_APP_SERVER_URL='http://localhost:8000' craco start",
"build": "cross-env-shell NODE_ENV=production REACT_APP_SERVER_URL='https://server.somul.kr' REACT_APP_SENTRY_DSN= REACT_APP_GA_ID= craco build",
"test": "craco test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"lint": "eslint src -c .eslintrc.json --ext ts,tsx",
"prettier": "prettier --write '**/*.{ts,tsx,css,html}'"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@sambego/storybook-state": "~2.0.1",
"@storybook/addon-actions": "~5.3.14",
"@storybook/addon-backgrounds": "~5.3.15",
"@storybook/addon-knobs": "~5.3.14",
"@storybook/addon-links": "~5.3.14",
"@storybook/addons": "~5.3.14",
"@storybook/preset-create-react-app": "~1.5.2",
"@storybook/react": "~5.3.14",
"@testing-library/jest-dom": "~4.2.4",
"@testing-library/react": "~9.3.2",
"@testing-library/user-event": "~7.1.2",
"@types/jest": "~25.2.1",
"@types/moxios": "~0.4.9",
"@types/node": "~12.0.0",
"@types/react": "~16.9.0",
"@types/react-dom": "~16.9.0",
"@types/styled-components": "~5.0.1",
"@typescript-eslint/eslint-plugin": "~2.21.0",
"craco-alias": "~2.1.1",
"cross-env": "~7.0.2",
"eslint": "~6.8.0",
"eslint-config-airbnb": "~18.0.1",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-json": "~2.1.1",
"eslint-plugin-prettier": "~3.1.3",
"eslint-plugin-react": "~7.19.0",
"eslint-plugin-react-hooks": "~4.0.0",
"husky": "~4.2.5",
"lint-staged": "~10.2.2",
"moxios": "~0.4.0",
"prettier": "~2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"eslint",
"git add"
]
}
}