-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.02 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
{
"name": "iwepy",
"version": "1.0.0",
"description": "wepy combine iview",
"main": "dist/app.js",
"scripts": {
"dev": "npm run clean && cross-env APP_ENV=dev wepy build --watch",
"mock": "npm run clean && concurrently \"yarn server\" \"cross-env APP_ENV=dev MOCK=enable wepy build --watch\" ",
"server": "node-dev ./server/bin/www",
"build": "npm run clean && cross-env NODE_ENV=production APP_ENV=prod wepy build --no-cache",
"dev:web": "wepy build --output web",
"clean": "find ./dist -maxdepth 1 -not -name 'project.config.json' -not -name 'dist' | xargs rm -rf",
"lint": "eslint ./src",
"validate": "npm ls"
},
"author": "FaureWu <502556093@qq.com>",
"license": "MIT",
"dependencies": {
"@opcjs/zoro": "^2.2.2",
"@opcjs/zoro-plugin": "^2.0.2",
"wepy": "^1.6.0",
"wepy-async-function": "^1.4.4",
"wepy-redux": "^1.5.3"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"babel-plugin-syntax-export-extensions": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"concurrently": "^3.6.0",
"cookie-parser": "^1.4.3",
"cross-env": "^5.2.0",
"eslint": "^3.18.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^7.1.0",
"eslint-friendly-formatter": "^2.0.7",
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-prettier": "^2.6.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.0.1",
"express": "^4.16.3",
"faker": "^4.1.0",
"morgan": "^1.9.0",
"node-dev": "^3.1.3",
"precommit-hook": "^3.0.0",
"prettier": "^1.13.5",
"wepy-cli": "^1.7.3",
"wepy-compiler-babel": "^1.5.1",
"wepy-compiler-sass": "^1.3.12",
"wepy-eslint": "^1.5.3",
"wepy-plugin-imagemin": "^1.5.3",
"wepy-plugin-uglifyjs": "^1.3.7"
},
"pre-commit": [
"lint"
]
}