-
-
Notifications
You must be signed in to change notification settings - Fork 375
/
Copy pathpackage.json
111 lines (111 loc) · 3.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
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
{
"name": "preact-cli",
"version": "3.0.0-next.9",
"description": "Start building a Preact Progressive Web App in seconds.",
"repository": "developit/preact-cli",
"main": "lib/index.js",
"bin": {
"preact": "lib/index.js"
},
"scripts": {
"pretest": "rimraf tests/output",
"test": "jest",
"posttest": "rimraf tests/output"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/tests/setup.js",
"moduleDirectories": [
"node_modules",
"../babel/node_modules"
],
"testEnvironment": "node"
},
"engines": {
"node": ">=8"
},
"files": [
"lib"
],
"keywords": [
"preact",
"cli",
"pwa",
"project",
"generator"
],
"author": "Jason Miller <[email protected]> (http://jasonformat.com)",
"license": "MIT",
"bugs": "https://github.com/developit/preact-cli/issues",
"homepage": "https://github.com/developit/preact-cli",
"devDependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"html-looks-like": "^1.0.2",
"jest": "^22.4.3",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"node-sass": "^4.9.0",
"p-retry": "^2.0.0",
"puppeteer": "^1.3.0",
"sass-loader": "^7.0.1"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/register": "^7.0.0",
"@preact/babel": "*",
"autoprefixer": "^8.4.1",
"babel-esm-plugin": "^0.2.1",
"babel-loader": "^8.0.2",
"bluebird": "^3.5.0",
"chalk": "^2.4.1",
"console-clear": "^1.0.0",
"copy-webpack-plugin": "^4.1.0",
"cross-spawn-promise": "^0.10.1",
"css-loader": "^0.28.7",
"css-modules-require-hook": "^4.0.6",
"ejs-loader": "^0.3.0",
"fast-async": "^6.3.7",
"file-loader": "^1.1.11",
"fs.promised": "^3.0.0",
"get-port": "^3.1.0",
"gittar": "^0.1.0",
"glob": "^7.1.2",
"html-webpack-exclude-assets-plugin": "0.0.7",
"html-webpack-plugin": "^3.2.0",
"inquirer": "^5.2.0",
"ip": "^1.1.5",
"isomorphic-unfetch": "^2.0.0",
"loader-utils": "^1.1.0",
"log-symbols": "^2.1.0",
"mini-css-extract-plugin": "^0.4.0",
"minimatch": "^3.0.3",
"optimize-css-assets-webpack-plugin": "^4.0.0",
"ora": "^2.0.0",
"postcss-loader": "^2.1.4",
"preact": "^8.1.0",
"preact-compat": "^3.14.3",
"preact-render-to-string": "^3.6.0",
"preact-router": "^2.5.2",
"progress-bar-webpack-plugin": "^1.9.3",
"promise-polyfill": "^7.1.2",
"raw-loader": "^0.5.1",
"require-relative": "^0.8.7",
"rimraf": "^2.6.1",
"sade": "^1.4.1",
"script-ext-html-webpack-plugin": "^2.0.1",
"source-map": "^0.7.2",
"stack-trace": "0.0.10",
"style-loader": "^0.21.0",
"sw-precache-webpack-plugin": "^0.11.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"unfetch": "^3.0.0",
"update-notifier": "^2.5.0",
"url-loader": "^1.0.1",
"validate-npm-package-name": "^3.0.0",
"webpack": "^4.6.0",
"webpack-bundle-analyzer": "^2.11.3",
"webpack-dev-server": "^3.1.3",
"webpack-merge": "^4.1.0",
"webpack-plugin-replace": "^1.1.1",
"which": "^1.2.14"
}
}