generated from sonofmagic/npm-lib-template
-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathpackage.json
89 lines (89 loc) · 2.79 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
{
"name": "mpx-app",
"version": "1.0.0",
"description": "A mpx project",
"main": "index.js",
"scripts": {
"dev": "npm run watch",
"watch": "node ./build/build.js -w",
"watch:prod": "node ./build/build.js -w -p",
"build": "node ./build/build.js -p",
"build:dev": "node ./build/build.js",
"watch:cross": "npm run watch --modes=wx,ali,web",
"build:cross": "npm run build --modes=wx,ali,web",
"watch:web": "npm run watch --mode=web",
"lint": "eslint --ext .js,.ts,.mpx src/",
"test:unit": "jest --verbose ./test/unit",
"build:unit": "npm run build && jest --verbose ./test/unit",
"help": "node ./build/build.js --help",
"open": "weapp open -p dist/wx"
},
"author": "SonOfMagic <[email protected]>",
"license": "ISC",
"dependencies": {
"@mpxjs/api-proxy": "^2.7.44",
"@mpxjs/core": "^2.7.44",
"vue": "^3.2.37",
"vue-i18n": "^9.2.0"
},
"browserslist": [
"ios >= 9",
"chrome >= 47"
],
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/plugin-transform-typescript": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/runtime-corejs3": "^7.18.9",
"@mpxjs/miniprogram-simulate": "^1.4.17",
"@mpxjs/mpx-jest": "0.0.22",
"@mpxjs/webpack-plugin": "^2.7.46",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"autoprefixer": "^10.4.8",
"babel-jest": "^27.4.5",
"babel-loader": "^8.1.0",
"chalk": "^4.0.0",
"commander": "^9.4.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.21.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-webpack-plugin": "^3.1.0",
"html-loader": "^3.0.1",
"html-webpack-plugin": "^5.3.2",
"http-server": "^14.1.1",
"jest": "^27.4.5",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"postcss": "^8.4.14",
"postcss-rem-to-responsive-pixel": "^5.1.3",
"postcss-rpx-transform": "^1.0.1",
"rimraf": "^3.0.2",
"sass": "^1.54.2",
"sass-loader": "^13.0.2",
"stylus": "^0.58.1",
"stylus-loader": "^7.0.0",
"tailwindcss": "^3.1.7",
"tailwindcss-rem2px-preset": "^1.0.3",
"ts-jest": "^27.1.2",
"ts-loader": "^9.2.6",
"typescript": "^4.1.2",
"vue-loader": "^17.0.0",
"vue-router": "^4.1.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.7.8",
"weapp-ide-cli": "^1.0.0",
"weapp-tailwindcss-webpack-plugin": "^1.7.2",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-dev-server": "^4.9.3",
"webpack-merge": "^5.8.0"
}
}