-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.84 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.84 KB
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
{
"name": "react-wxapp",
"version": "1.0.0",
"description": "react-wxapp",
"main": "index.js",
"scripts": {
"build:lib": "rm -fr lib && babel packages --out-dir lib --extensions \".js,.ts\"",
"build:lib.watch": "babel packages --out-dir lib --extensions \".js,.ts\" --watch",
"compile": "cross-env BUILE_ENV=compile node ./lib/compile-core/index",
"runtime": "cross-env BUILE_ENV=runtime node ./lib/runtime-core/index",
"build:compile": "npm run build:lib && npm run compile",
"build:runtime": "npm run build:lib && npm run runtime"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canfoo/react-wxapp.git"
},
"keywords": [
"react",
"wxapp"
],
"author": "canfoo",
"license": "ISC",
"bugs": {
"url": "https://github.com/canfoo/react-wxapp/issues"
},
"dependencies": {
"@babel/cli": "^7.14.8",
"@babel/code-frame": "^7.5.5",
"@babel/core": "^7.1.2",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/preset-env": "^7.15.0",
"@babel/traverse": "^7.1.6",
"@babel/types": "^7.1.6",
"babel-loader": "^8.0.6",
"chalk": "^3.0.0",
"colors": "^1.3.3",
"commander": "^3.0.0",
"copy-webpack-plugin": "^5.0.5",
"deepmerge": "^4.2.2",
"enhanced-resolve": "^4.1.1",
"fs-extra": "^7.0.0",
"getopts": "^2.2.3",
"loader-utils": "^1.2.3",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"react": "^16.8.6",
"react-reconciler": "^0.26.1"
},
"homepage": "https://github.com/canfoo/react-wxapp#readme",
"devDependencies": {
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/node": "^12.12.11",
"babel-plugin-define-variables": "^0.0.3",
"cross-env": "^7.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}