-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.01 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
{
"name": "collie",
"version": "1.0.0",
"description": "MyPetmily's Partners app",
"main": "index.js",
"repository": "https://github.com/mypetmily/collie",
"author": "MyPetmily <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "parcel index.html -p 3000 --open"
},
"husky": {
"hooks": {
"pre-commit": "eslint 'src/**/*.{ts,tsx}'",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@types/react-redux": "^7.1.12",
"axios": "^0.20.0",
"classnames": "^2.2.6",
"connected-react-router": "^6.8.0",
"dayjs": "^1.9.3",
"history": "4",
"immer": "^7.0.9",
"layouts": "^3.0.2",
"pages": "^0.0.16",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"typesafe-actions": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/history": "4",
"@types/node": "^14.11.8",
"@types/react": "^16.9.52",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"autoprefixer": "9.8.6",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^7.11.0",
"eslint-config-naver": "^2.1.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^4.3.6",
"module": "^1.2.5",
"parcel-bundler": "^1.12.4",
"postcss-modules": "^3.2.2",
"prettier": "^2.1.2",
"sass": "^1.27.0",
"typescript": "^4.0.3"
}
}