This repository has been archived by the owner on Apr 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.13 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
{
"name": "snutt-cra3",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@types/history": "^4.7.5",
"@types/jest": "^25.1.2",
"@types/node": "^16.11.66",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.3",
"@types/react-router-redux": "^5.0.18",
"concurrently": "^4.1.0",
"cypress": "3.2.0",
"eslint-config-prettier": "^6.10.0",
"redux-mock-store": "^1.5.3",
"typescript": "^4.8.4"
},
"dependencies": {
"axios": "^0.18.0",
"axios-mock-adapter": "^1.16.0",
"color": "^2.0.0",
"history": "^4.7.2",
"html2canvas": "^1.0.0-alpha.12",
"immutability-helper": "^2.7.0",
"immutable": "^3.7.6",
"lodash": "^4.17.11",
"mobile-detect": "^1.4.1",
"prop-types": "^15.6.1",
"react": "^16.12.0",
"react-autocomplete": "^1.8.1",
"react-color": "^2.13.8",
"react-dom": "^16.12.0",
"react-facebook-login": "^4.0.1",
"react-loading": "^2.0.2",
"react-modal": "^3.4.4",
"react-redux": "5",
"react-router-dom": "^4.2.2",
"react-router-redux": "5.0.0-alpha.9",
"react-scripts": "3.4.0",
"react-select": "1.2.1",
"redux": "^3.0.5",
"redux-thunk": "^2.0.0",
"sass": "^1.55.0",
"store": "^2.0.12",
"styled-components": "^4.1.3",
"whatwg-fetch": "^0.11.0"
},
"scripts": {
"start": "react-scripts start",
"start:https": "HTTPS=true react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"cypress:open": "concurrently -n dev,cypress -c blue,red \"yarn start\" \"yarn cypress open --config baseUrl=https://localhost:3000\"",
"deploy:dev": "scripts/deploy.sh dev",
"deploy:prod": "echo prod 배포는 github 에서 직접 릴리즈를 생성해 주세요."
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 10",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"prettier --write",
"eslint --fix"
]
}
}