-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
88 lines (88 loc) · 2.94 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
{
"name": "quickstart-miniprogram",
"version": "0.0.1",
"description": "微信小程序模板",
"license": "ISC",
"main": "index.js",
"scripts": {
"build": "mpc build",
"start": "mpc serve",
"dev:prod": "cross-env CONF=build mpc serve",
"build:dev": "cross-env CONF=dev GENERATE_SOURCEMAP=false mpc build",
"lint:scss": "stylelint --fix src/**/*.scss",
"sort": "npx sort-package-json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "fupengl",
"repository": "fupengl/quickstart-miniprogram",
"dependencies": {
"miniprogram-navigation-bar": "0.0.4",
"miniprogram-recycle-view": "0.0.6",
"miniprogram-slide-view": "0.0.3",
"wapp-cli": "^0.0.71"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.3.2",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/plugin-transform-destructuring": "^7.3.2",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-parameters": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-loader": "^8.0.5",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.0",
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"postcss-load-plugins": "^2.3.0",
"postcss-plugin": "^1.0.0",
"postcss-preset-env": "^6.3.0",
"stylelint": "^9.7.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.3.2",
"tslint": "^5.11.0"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"Android >= 3.2",
"Firefox >= 20",
"iOS 7"
],
"postcss": {
"plugins": {
"postcss-plugin": {
"autoprefixer": {
"grid": true
},
"postcss-preset-env": {}
}
}
}
}