-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.18 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
108
109
110
111
112
113
{
"name": "devlearn",
"version": "1.0.0",
"description": "DEVLEARN",
"main": "webpack.config.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sema0710/DEVLEARN.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sema0710/DEVLEARN/issues"
},
"homepage": "https://github.com/sema0710/DEVLEARN#readme",
"scripts": {
"start": "NODE_ENV=local next",
"develop": "NODE_ENV=development next",
"build": "webpack --mode production"
},
"dependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@editorjs/checklist": "^1.3.0",
"@editorjs/code": "^2.6.0",
"@editorjs/delimiter": "^1.2.0",
"@editorjs/editorjs": "^2.19.1",
"@editorjs/embed": "^2.4.0",
"@editorjs/header": "^2.6.1",
"@editorjs/image": "^2.6.0",
"@editorjs/inline-code": "^1.3.1",
"@editorjs/link": "^2.3.1",
"@editorjs/list": "^1.6.1",
"@editorjs/marker": "^1.2.2",
"@editorjs/quote": "^2.4.0",
"@editorjs/raw": "^2.3.0",
"@editorjs/simple-image": "^1.4.0",
"@editorjs/table": "^1.3.0",
"@editorjs/warning": "^1.2.0",
"@stomp/stompjs": "^5.4.4",
"@svgr/webpack": "^5.5.0",
"@types/jest": "^26.0.19",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.15",
"@types/react-router-dom": "^5.1.7",
"@types/socket.io-client": "^1.4.33",
"@types/sockjs-client": "^1.1.1",
"@types/stompjs": "^2.3.4",
"@types/styled-components": "^5.1.7",
"axios": "^0.19.2",
"babel-cli": "^6.26.0",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.12.0",
"editorjs-converter": "^1.0.0",
"html-webpack-plugin": "^4.5.1",
"jest": "^26.2.2",
"net": "^1.0.2",
"next": "^10.0.4",
"node-forge": "^0.10.0",
"query-string": "^6.13.8",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-editor-js": "^1.7.0",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-stomp": "^5.0.0",
"react-textarea-autosize": "^8.2.0",
"redux": "^4.0.5",
"styled-components": "^5.1.1",
"ts-jest": "^26.1.4",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.1"
},
"devDependencies": {
"@editorjs/paragraph": "^2.8.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"css-loader": "^3.6.0",
"dotenv-webpack": "^2.0.0",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.0.5",
"file-loader": "^6.0.0",
"prettier": "^2.0.5",
"style-loader": "^1.2.1",
"url-loader": "^4.1.1"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"enableTsDiagnostics": true
}
}
}
}