-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.98 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
{
"name": "learn-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 8088",
"build": "next build",
"server": "nodemon ./server/index.ts",
"start": "concurrently \"yarn dev\" \"yarn server\"",
"lint:next": "next lint",
"lint": "eslint --fix --ext '.js,.jsx,.ts,.tsx'",
"lint:css": "stylelint --fix \"pages/**/*.{sass}\"",
"commit": "git cz"
},
"dependencies": {
"@types/bluebird": "^3.5.36",
"@types/draftjs-to-html": "^0.8.1",
"@types/html-to-draftjs": "^1.4.0",
"@types/react-draft-wysiwyg": "^1.13.3",
"@types/sequelize": "^4.28.8",
"antd": "^4.16.9",
"axios": "^0.21.1",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"classnames": "^2.3.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dayjs": "^1.10.6",
"draft-js": "^0.11.7",
"draftjs-to-html": "^0.9.1",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"global": "^4.4.0",
"lodash": "^4.17.21",
"mysql2": "^2.3.0",
"next": "^11.0.0",
"nodemon": "^2.0.12",
"react": "17.0.2",
"react-dom": "^17.0.2",
"react-draft-wysiwyg": "^1.14.7",
"react-hot-keys": "^2.6.2",
"react-redux": "^7.2.4",
"redux": "^4.1.1",
"sass": "^1.36.0",
"sequelize": "5.21.5",
"ts-node": "^10.1.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/compression": "^1.7.1",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^16.4.5",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/react-redux": "^7.1.18",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"commitizen": "^4.2.4",
"concurrently": "^6.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.31.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"next-images": "^1.8.1",
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"typescript": "^4.3.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:css && npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"Firefox ESR",
"not dead",
"IE 11",
"not IE 10",
"not op_mini all"
]
}