-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.76 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
{
"name": "eat",
"version": "1.0.0",
"description": "chat_robot\r ==========",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "webpack --config webpack.config.dev.js --progress --watch --hot",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js --ext .jsx src",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bbb324/chat.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bbb324/chat/issues"
},
"dependencies": {
"antd": "^4.4.2",
"html-webpack-plugin": "^5.5.0",
"react": "16.x",
"react-dom": "16.x",
"react-dotdotdot": "^1.3.1",
"react-markdown": "^8.0.3",
"react-router-dom": "^4.3.1",
"remarkable": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/preset-stage-0": "^7.8.3",
"@babel/runtime": "^7.18.6",
"babel-loader": "^8.2.5",
"babel-plugin-import": "^1.13.3",
"babel-plugin-react-transform": "^3.0.0",
"babel-polyfill": "6.26.0",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-react": "^7.23.2",
"eslint-webpack-plugin": "^3.2.0",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"style-loader": "^3.3.1",
"webpack": "^5.50.0",
"webpack-cli": "^4.7.2",
"webpack-merge": "^5.0.9"
}
}