-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.78 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
{
"name": "web-image-analyze",
"version": "1.0.5",
"description": "",
"bin": {
"image-analyze": "./bin/image-analyze"
},
"main": "./dist/server/index.js",
"files": [
"dist",
"bin"
],
"scripts": {
"start": "concurrently \"npm run start:server\" \"npm run start:client\"",
"build": "concurrently \"npm run build:server\" \"npm run build:client\"",
"dev:client": "parcel client/index.html",
"start:server": "nodemon --watch 'server/**/*.ts' --exec 'ts-node' server/index.ts",
"start:client": "parcel watch client/index.html --out-dir .static",
"build:server": "tsc -p .",
"build:client": "parcel build client/index.html --out-dir dist/.static"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/koa-log4": "^2.3.2",
"@types/koa-static": "^4.0.1",
"@types/node": "^14.14.12",
"@types/node-fetch": "^2.5.7",
"@types/react": "^15.0.0 || ^16.0.0 || ^17.0.0 ",
"babel-plugin-import": "^1.13.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^5.3.0",
"minimist": "^1.2.5",
"nodemon": "^2.0.6",
"open": "^7.3.0",
"react-hot-loader": "^4.13.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@koa/router": "^10.0.0",
"antd": "^4.16.13",
"co-body": "^6.1.0",
"dayjs": "^1.10.4",
"isomorphic-fetch": "^3.0.0",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-log4": "^2.3.2",
"koa-static": "^5.0.0",
"node-fetch": "^2.6.1",
"parcel": "^1.12.4",
"puppeteer": "^8.0.0",
"react": "^15.0.0 || ^16.0.0 || ^17.0.0 ",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 ",
"stream": "^0.0.2"
}
}