-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 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
89
90
91
92
{
"name": "day02",
"version": "1.0.0",
"description": "A weex project",
"author": "",
"private": true,
"scripts": {
"start": "npm run serve",
"build": "webpack --env.NODE_ENV=common",
"build:prod": "webpack --env.NODE_ENV=production",
"build:prod:web": "webpack --env.NODE_ENV=release",
"build:plugin": "webpack --env.NODE_ENV=plugin",
"clean:web": "rimraf ./release/web",
"clean:ios": "rimraf ./release/ios",
"clean:android": "rimraf ./release/android",
"dev": "webpack --env.NODE_ENV=common --progress --watch",
"unit": "karma start test/unit/karma.conf.js --single-run",
"test": "npm run unit",
"lint": "eslint --ext .js,.vue src test/unit --fix",
"serve": "webpack-dev-server --env.NODE_ENV=development --progress",
"ios": "weex run ios",
"web": "npm run serve",
"android": "weex run android",
"pack:ios": "npm run clean:ios && weex build ios",
"pack:android": "npm run clean:android && weex build android",
"pack:web": "npm run clean:web && npm run build:prod:web"
},
"keywords": [
"weex"
],
"license": "MIT",
"dependencies": {
"phantom-limb": "0.0.1",
"vue": "^2.5.11",
"weex-vue-render": "^1.0.17"
},
"devDependencies": {
"autoprefixer": "^8.0.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"css-loader": "^0.28.8",
"eslint": "^4.15.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.0.0",
"extract-text-webpack-plugin": "^3.0.2",
"friendly-errors-webpack-plugin": "^1.6.1",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"html-webpack-plugin": "^2.30.1",
"html-webpack-plugin-for-multihtml": "^2.30.2",
"ip": "^1.1.5",
"karma": "^1.7.1",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.5.0",
"karma-sinon-chai": "^1.3.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.6",
"mocha": "^5.2.0",
"node-notifier": "^5.1.2",
"portfinder": "^1.0.13",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.9",
"postcss-plugin-weex": "^0.1.6",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"script-ext-html-webpack-plugin": "^1.8.5",
"sinon": "^4.1.3",
"sinon-chai": "^2.14.0",
"vue-loader": "^12.2.0",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.5.11",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7",
"webpack-merge": "^4.1.0",
"webpack-uglify-parallel": "^0.1.4",
"weex-loader": "^0.7.2",
"weex-vue-precompiler": "^0.1.17",
"ws": "^1.1.0"
}
}