-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.27 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.27 KB
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
{
"private": true,
"version": "1.0.0",
"scripts": {
"cf": "node ./bin/cf/cli2.js",
"dev": "npm run development",
"development": "npm run cf",
"watch": "npm run cf watch",
"watch-poll": "npm run cf watch -- --watch-options-poll=1000",
"hot": "npm run cf watch --hot",
"prod": "npm run production",
"production": "npm run cf --production"
},
"bin": {
"cf": "./bin/cf/cli.js"
},
"engines": {
"node": ">=12.14.0"
},
"_moduleAliases": {
"@root": ".",
"cf": "./bin/cf/src/index.js"
},
"dependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/runtime": "^7.15.4",
"@types/babel__core": "^7.1.16",
"@types/clean-css": "^4.2.5",
"autoprefixer": "^10.3.6",
"chalk": "^4.1.2",
"cli-table3": "^0.6.0",
"collect.js": "^4.29.0",
"commander": "^8.2.0",
"concat": "^1.0.3",
"css-loader": "^5.2.6",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"fs-extra": "^10.0.0",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"mini-css-extract-plugin": "^2.3.0",
"module-alias": "^2.2.2",
"postcss-loader": "^6.2.0",
"semver": "^7.3.5",
"strip-ansi": "^6.0.0",
"terser": "^5.9.0",
"terser-webpack-plugin": "^5.2.4",
"webpack": "^5.55.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.0",
"webpack-notifier": "^1.13.0",
"webpackbar": "^5.0.0-3",
"yargs": "^17.2.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.15.7",
"@cresenity/cfpod": "file:bin/cfpod",
"@types/fs-extra": "^9.0.13",
"browser-sync": "^2.27.5",
"browser-sync-webpack-plugin": "^2.3.0",
"clean-css": "^5.2.0",
"cross-env": "^7.0.3",
"cssnano": "^5.0.12",
"postcss": "^8.4.4",
"postcss-scss": "^4.0.8",
"resolve-url-loader": "^4.0.0",
"sass": "^1.45.0",
"sass-loader": "^12.4.0"
}
}