-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.67 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
{
"name": "synced_weapp",
"version": "0.0.0",
"description": "synced's mini program",
"private": true,
"scripts": {
"start": "webpack --watch",
"start:alipay": "webpack --watch --env.target=Alipay",
"webpack": "webpack",
"deprecate:watch": "echo \"'watch' is deprecated, please use 'start' instead\"",
"watch": "run-s deprecate:watch start",
"watch:alipay": "run-s deprecate:watch start:alipay",
"prestart": "rimraf dist",
"prebuild": "rimraf dist",
"build:wechat": "cross-env NODE_ENV=production webpack --env.target=Wechat --env.min",
"build:alipay": "cross-env NODE_ENV=production webpack --env.target=Alipay --env.min",
"build": "run-s build:*",
"lint:watch": "cross-env LINT=true run-s start",
"lint:build": "cross-env LINT=true run-s build",
"prettier": "prettier-eslint --write \"+(src|test)/**/*.js\"",
"create-page": "create-wxapp-page --type=page --dir=src --indent=tab --style=scss",
"create-component": "create-wxapp-page --type=component --dir=src --indent=tab --style=scss",
"test": "jest"
},
"main": "dist/wechat/app.js",
"author": "synced",
"license": "UNLICENSED",
"engines": {
"node": ">=4"
},
"copyWebpack": [
"images",
"icons",
"wxParse"
],
"devDependencies": {
"babel-core": "^6.24.0",
"babel-jest": "21.x",
"babel-loader": "^7.1.1",
"babel-minify-webpack-plugin": "^0.3.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"copy-webpack-plugin": "^4.5.1",
"create-wxapp-page": "^2.0.2",
"cross-env": "^5.0.1",
"eslint": "^4.19.1",
"eslint-config-cantonjs": "^1.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-import-resolver-webpack": "^0.10.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.15.2",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.8.2",
"eslint-plugin-standard": "^3.1.0",
"file-loader": "1.1.11",
"glob": "^7.1.2",
"jest": "21.x",
"node-sass": "^4.6.1",
"npm-run-all": "^4.1.1",
"prettier-eslint-cli": "^4.7.0",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-scss": "^1.4.4",
"stylelint-webpack-plugin": "^0.9.0",
"webpack": "^3.8.1",
"wxapp-webpack-plugin": "^0.19.0",
"wxml-loader": "^0.2.1"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"es6-promise": "^4.1.0"
},
"jest": {
"modulePathIgnorePatterns": [
"node_modules",
"lib"
]
}
}