forked from umeng/mp-demos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 948 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 948 Bytes
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
{
"name": "remax-template",
"private": true,
"version": "1.0.0",
"description": "Starter template for Remax apps",
"main": "index.js",
"keywords": [],
"author": "云猫🐈",
"license": "MIT",
"scripts": {
"dev:wx": "cross-env REMAX_PLATFORM=wechat remax build -w -t wechat",
"dev:my": "cross-env REMAX_PLATFORM=alipay remax build -w -t alipay",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build:wx": "cross-env REMAX_PLATFORM=wechat NODE_ENV=production remax build -t wechat",
"build:my": "cross-env REMAX_PLATFORM=alipay NODE_ENV=production remax build -t alipay"
},
"dependencies": {
"clsx": "^1.0.4",
"react": "^16.8.6",
"remax": "^1.19.2",
"remax-cli": "^1.19.2",
"rimraf": "^2.6.3",
"rollup-plugin-terser": "^5.3.0",
"umtrack-alipay": "^2.2.2",
"umtrack-wx": "^2.2.2"
},
"devDependencies": {
"chokidar": "^2.1.8",
"cross-env": "^7.0.2"
}
}