-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.53 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
{
"name": "@emb/web-subscriber",
"version": "1.0.0",
"private": true,
"description": "web page sender ",
"main": "./server/index.js",
"scripts": {
"start": "concurrently \"yarn fe-start|| npm run fe-start\" \" nodemon ./server/index.js\"",
"build": "concurrently \" yarn fe-build ||npm run fe-build\" \" nodemon ./server/index.js\"",
"fe-start": "cd ./views && yarn start|| npm run start",
"fe-build": "cd ./views && yarn|| npm i &&npm run build ",
"be-start": "node ./server/index.js",
"test": "jest",
"lint": "eslint './{views,server}/src/**/*.{js,jsx}' --fix"
},
"dependencies": {
"@craco/craco": "^5.6.4",
"antd": "^4.3.3",
"busboy": "^0.3.1",
"craco-less": "^1.17.0",
"ejs": "^3.1.3",
"koa": "^2.12.0",
"koa-bodyparser": "3",
"koa-router": "7",
"koa-static": "^5.0.0",
"koa-views": "^6.2.3",
"nodemailer": "^6.4.8",
"pm2": "^4.4.0",
"react": "^16.13.1",
"react-desktop": "^0.3.9",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"babel-eslint": "^10.1.0",
"concurrently": "^5.2.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-umi": "^0.1.1",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.1.0",
"husky": "^0.12.0",
"nodemon": "^2.0.4",
"prettier": "^1.19.1",
"typescript": "~3.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/embaobao/websubscriber.git"
},
"keywords": [
"Crawler",
"kindle",
"webPage",
"react"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"author": "Emb",
"license": "MIT",
"bugs": {
"url": "https://github.com/embaobao/websubscriber/issues"
},
"homepage": "https://github.com/embaobao/websubscriber#readme",
"peerDependencies": {
"@testing-library/dom": "^5.6.1"
}
}