-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.35 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
{
"name": "utools-xunfei-ocr",
"version": "1.0.0",
"description": "",
"browserslist": ["last 2 Chrome versions"],
"browser": "dist/index.html",
"targets": {
"browser": {
"engines": {
"browsers": ["last 2 Chrome versions"]
},
"publicUrl": "./",
"sourceMap": false
}
},
"scripts": {
"start": "parcel serve ./src/index.html",
"build": "rm -rf ./dist && parcel build ./src/index.html",
"watch": "rm -rf ./dist && parcel watch ./src/index.html"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"@ant-design/icons": "^4.1.0",
"antd": "^4.2.3",
"crypto-js": "^3.1.9-1",
"lodash": "^4.17.15",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-react": "^7.9.4",
"cssnano": "^4.1.10",
"less": "^3.10.3",
"parcel": "^2.0.0-alpha.3.2"
},
"babel": {
"presets": [
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-syntax-dynamic-import",
"@babel/proposal-object-rest-spread"
]
}
}