-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.75 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.75 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
67
{
"name": "devkor-front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node dev.js",
"build": "next build",
"start": "next start -p 3000",
"lint": "eslint ./src"
},
"dependencies": {
"@next/react-refresh-utils": "^11.1.0",
"@zeit/next-sass": "^1.0.1",
"axios": "^0.21.1",
"codemirror": "^5.62.2",
"express": "^4.17.1",
"http-proxy-middleware": "^1.3.1",
"js-cookie": "^2.2.1",
"markdown-to-jsx": "^7.1.3",
"moment": "^2.29.1",
"next": "10.2.0",
"next-redux-wrapper": "^6.0.2",
"node-fetch": "^2.6.1",
"pm2": "^5.1.0",
"prop-types": "^15.7.2",
"react": "17.0.2",
"react-codemirror": "^1.0.0",
"react-codemirror2": "^7.2.1",
"react-dom": "17.0.2",
"react-loader-spinner": "^4.0.0",
"react-redux": "^7.2.4",
"react-responsive": "^8.2.0",
"react-select": "^4.3.1",
"react-textarea-autosize": "^8.3.3",
"redux": "^4.1.0",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"sass": "^1.32.13",
"url-loader": "^4.1.1",
"webpack": "4.44.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"commitlint": "^12.1.1",
"conventional-changelog-conventionalcommits": "^4.6.0",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint"
],
"*.{json}": [
"prettier --write"
]
}
}