-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.19 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
{
"private": true,
"name": "freedom",
"version": "1.0.0",
"description": "微信小程序脚手架",
"main": "index.js",
"scripts": {
"test": "jest",
"lerna": "lerna bootstrap --hoist --ignore-scripts",
"postinstall": "npm run lerna",
"start": "cross-env NODE_ENV=development webpack --watch --config ./build/webpack.js --color",
"build": "cross-env NODE_ENV=production webpack --config ./build/webpack.js --color"
},
"keywords": [
"wxapp",
"freedom"
],
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-refer-import": "^1.7.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-runtime": "^6.26.0",
"clean-webpack-plugin": "^0.1.19",
"commander": "^2.15.1",
"cross-env": "^5.1.4",
"file-loader": "^1.1.11",
"fs-extra": "^5.0.0",
"lerna": "^2.10.1",
"webpack": "^4.6.0",
"webpack-cli": "^3.1.2",
"webpack-wxapp-module-plugin": "^2.0.2",
"webpack-wxml-loader": "^0.2.2",
"wxml-layout-loader": "^1.0.3"
},
"dependencies": {
"dantejs": "^2.0.6"
}
}