-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
131 lines (131 loc) · 4.32 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "packing",
"description": "A webpack based web front-end development environment",
"version": "7.0.2",
"repository": "packingjs/packing",
"files": [
"dist"
],
"keywords": [
"packing",
"webpack"
],
"bin": {
"packing": "dist/bin/packing.js",
"packing-build": "dist/bin/packing-build.js",
"packing-dll": "dist/bin/packing-dll.js",
"packing-serve-dist": "dist/bin/packing-serve-dist.js",
"packing-serve": "dist/bin/packing-serve.js"
},
"author": "zhongzhi <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rimraf dist && babel src -d dist",
"lint": "eslint --fix --quiet \"src/**/*.js\" \"test/**/*.js\"",
"postrelease": "git push && git push origin --tags",
"prepare": "npm run build",
"release": "standard-version && npm publish",
"release:minor": "standard-version --release-as minor && npm publish",
"release:major": "standard-version --release-as major && npm publish",
"release:alpha": "standard-version --prerelease alpha && npm publish --tag=next",
"test": "node test/index.js",
"test:debug": "DEBUG=1 node test/index.js",
"examples": "node examples/build-all.js",
"update": "sh ./scripts/npm-update.sh"
},
"dependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.1",
"@babel/node": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-do-expressions": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-proposal-export-namespace-from": "^7.12.1",
"@babel/plugin-proposal-function-bind": "^7.12.1",
"@babel/plugin-proposal-function-sent": "^7.12.1",
"@babel/plugin-proposal-json-strings": "^7.12.1",
"@babel/plugin-proposal-logical-assignment-operators": "^7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-numeric-separator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/plugin-proposal-pipeline-operator": "^7.12.1",
"@babel/plugin-proposal-throw-expressions": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/runtime": "^7.12.1",
"autoprefixer": "^10.0.1",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"chalk": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"cli-spinner": "^0.2.10",
"commander": "^6.1.0",
"core-js": "^3.6.5",
"css-loader": "^5.0.0",
"cssnano": "^4.1.10",
"dotenv": "^8.2.0",
"eslint-config-qunar": "^7.1.0",
"eslint-loader": "^4.0.2",
"file-loader": "^6.1.1",
"import-fresh": "^3.2.1",
"inquirer": "^7.3.3",
"loader-utils": "^2.0.0",
"mini-css-extract-plugin": "^1.0.0",
"mkdirp": "^1.0.4",
"packing-glob": "^1.0.1",
"postcss-loader": "^4.0.4",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-webpack-plugin": "^2.1.1",
"terser-webpack-plugin": "^5.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.1.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-pwa-manifest": "^4.2.0"
},
"devDependencies": {
"apollo-server-express": "^2.18.2",
"body-parser": "^1.19.0",
"casual": "^1.6.2",
"eslint": "^7.11.0",
"express": "^4.17.1",
"graphql": "^15.3.0",
"graphql-tools": "^6.2.4",
"merge-graphql-schemas": "^1.7.8",
"mocha": "^8.1.3",
"open-browser-webpack-plugin": "^0.0.5",
"packing-template-ejs": "^2.0.0",
"packing-template-handlebars": "^2.0.2",
"packing-template-pug": "^2.0.7",
"packing-template-smarty": "^2.0.1",
"packing-template-velocity": "^2.0.0",
"packing-urlrewrite": "^0.2.1",
"should": "^13.2.3",
"standard-version": "^9.0.0",
"supertest": "^5.0.0",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0"
},
"engines": {
"node": ">=10",
"npm": ">=6.0"
},
"nyc": {
"include": [
"src"
],
"reporter": [
"lcov",
"html",
"text"
],
"report-dir": "./.tmp/coverage",
"temp-directory": "./.tmp/.nyc_output"
}
}